Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
7584 commits behind the upstream repository.
manage.py 322 B
#!/usr/bin/env python
import os
import sys

sys.path.append(os.path.dirname(os.path.abspath(__file__)))

if __name__ == "__main__":

    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings.production")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)