-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanage.py
More file actions
executable file
·31 lines (24 loc) · 996 Bytes
/
manage.py
File metadata and controls
executable file
·31 lines (24 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
import os
import sys
from decouple import config
if __name__ == "__main__":
settings_module = config("DJANGO_SETTINGS_MODULE", default=None)
if len(sys.argv) >= 2 and sys.argv[1] == "test":
if settings_module:
print(
"Ignoring config('DJANGO_SETTINGS_MODULE') because it's test. "
"Using 'vinta_schedule_api.settings.test'"
)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "vinta_schedule_api.settings.test")
else:
if settings_module is None:
print(
"Error: no DJANGO_SETTINGS_MODULE found. Will NOT start devserver. "
"Remember to create .env file at project root. "
"Check README for more info."
)
sys.exit(1)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", settings_module)
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)