gitlab
This commit is contained in:
parent
63b646d03a
commit
7fdc9fe0f0
@ -132,6 +132,11 @@ MEDIA_URL = "/media/"
|
||||
STATIC_ROOT = os.path.join(BASE_DIR, "static")
|
||||
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
|
||||
DATA_ROOT = os.path.join(BASE_DIR, "data")
|
||||
EXTRA_FILES_ROOT = os.path.join(BASE_DIR, "extra_files")
|
||||
for root in DATA_ROOT, EXTRA_FILES_ROOT, MEDIA_ROOT:
|
||||
if not os.path.exists(root):
|
||||
os.mkdir(root)
|
||||
|
||||
SOLUTIONS_ROOT = os.path.join(DATA_ROOT, "solutions")
|
||||
|
||||
RABBIT_HOST = "rabbitmq"
|
||||
|
Loading…
Reference in New Issue
Block a user