mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-27 23:51:47 +00:00
24 lines
539 B
Python
24 lines
539 B
Python
from utils.shortcuts import get_env
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'HOST': get_env("POSTGRES_HOST", "oj-postgres"),
|
|
'PORT': get_env("POSTGRES_PORT", "5432"),
|
|
'NAME': get_env("POSTGRES_DB"),
|
|
'USER': get_env("POSTGRES_USER"),
|
|
'PASSWORD': get_env("POSTGRES_PASSWORD")
|
|
}
|
|
}
|
|
|
|
REDIS_CONF = {
|
|
"host": get_env("REDIS_HOST", "oj-redis"),
|
|
"port": get_env("REDIS_PORT", "6379")
|
|
}
|
|
|
|
DEBUG = False
|
|
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
DATA_DIR = "/data"
|