bijoe/manage.py

11 lines
249 B
Python
Raw Permalink Normal View History

2020-03-31 21:01:30 +02:00
#!/usr/bin/env python3
import os
import sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "bijoe.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)