fargo/manage.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
248 B
Python
Raw Permalink Normal View History

2015-02-11 10:48:58 +01:00
#!/usr/bin/env python
import os
import sys
if __name__ == '__main__':
2015-02-13 14:58:24 +01:00
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'fargo.settings')
2015-02-11 10:48:58 +01:00
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)