forked from anukat2015/datal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
19 lines (13 loc) · 867 Bytes
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
########################################################################################
########################################################################################
########################################################################################
############## This file need to be out one up directory from here (/junar)#############
########################################################################################
########################################################################################
########################################################################################
import os, sys
if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "core.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)