mirror of https://github.com/zulip/zulip.git
15 lines
356 B
Python
15 lines
356 B
Python
|
|
import sys
|
|
from typing import Any
|
|
|
|
from django.conf import settings
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from zerver.lib.management import check_config
|
|
|
|
class Command(BaseCommand):
|
|
help = """Checks your Zulip Voyager Django configuration for issues."""
|
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
|
check_config()
|