diff options
author | komalsheth286 | 2016-09-08 10:44:04 +0530 |
---|---|---|
committer | komalsheth286 | 2016-09-08 10:44:04 +0530 |
commit | 95bb4b3c871732f354132fc1571a00b0acbf68ac (patch) | |
tree | 3c21f0883cbecaffc1eee011bfdb352423b7af6d /manage.py | |
download | SciPy2016-95bb4b3c871732f354132fc1571a00b0acbf68ac.tar.gz SciPy2016-95bb4b3c871732f354132fc1571a00b0acbf68ac.tar.bz2 SciPy2016-95bb4b3c871732f354132fc1571a00b0acbf68ac.zip |
First Commit
Diffstat (limited to 'manage.py')
-rwxr-xr-x | manage.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..0182d2e --- /dev/null +++ b/manage.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "scipy2016.settings") + + from django.core.management import execute_from_command_line + + execute_from_command_line(sys.argv) |