summaryrefslogtreecommitdiffstats
path: root/manage.py
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@pelagicore.com>2015-08-27 17:40:51 +0200
committerOswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>2015-10-19 14:27:57 +0200
commit09462ae8deef6a084ffb23a89c59fe2e1e99e472 (patch)
treec0963a7c0b4b3b431930cb8eb2d46de54fbce931 /manage.py
initial commit
Diffstat (limited to 'manage.py')
-rwxr-xr-xmanage.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/manage.py b/manage.py
new file mode 100755
index 0000000..0a90195
--- /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", "appstore.settings")
+
+ from django.core.management import execute_from_command_line
+
+ execute_from_command_line(sys.argv)