regluit/manage.py

11 lines
253 B
Python
Raw Normal View History

#!/usr/bin/env python
2016-04-11 20:17:16 +00:00
import os
import sys
if __name__ == "__main__":
2016-04-11 20:17:16 +00:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "regluit.settings.me")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)