forked from takahashigroup/CADS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanage.py
More file actions
executable file
·41 lines (33 loc) · 1.8 KB
/
manage.py
File metadata and controls
executable file
·41 lines (33 loc) · 1.8 KB
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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
#=================================================================================================
# Project: CADS/MADS - An Integrated Web-based Visual Platform for Materials Informatics
# Hokkaido University (2018)
# ________________________________________________________________________________________________
# Authors: Jun Fujima (Former Lead Developer) [2018-2021]
# Mikael Nicander Kuwahara (Current Lead Developer) [2021-]
# ________________________________________________________________________________________________
# Description: Django Server
# ------------------------------------------------------------------------------------------------
# Notes: This is the DJANGO server environment start file
# ------------------------------------------------------------------------------------------------
# References:
#=================================================================================================
import os
import sys
from decouple import config
if __name__ == "__main__":
settings_module = config('DJANGO_SETTINGS_MODULE', default=None)
if sys.argv[1] == 'test':
if settings_module:
print("Ignoring config('DJANGO_SETTINGS_MODULE') because it's test. "
"Using 'madsapp.settings.test'")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "madsapp.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)