mirror of https://github.com/zulip/zulip.git
13 lines
316 B
Python
13 lines
316 B
Python
from typing import Any
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from zerver.lib.management import check_config
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = """Checks /etc/zulip/settings.py for common configuration issues."""
|
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
|
check_config()
|