OnlineJudge/oj/local_settings.py

36 lines
574 B
Python
Raw Normal View History

# coding=utf-8
2015-08-02 00:50:38 +00:00
import os
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DATABASES = {
'default': {
2017-10-06 09:46:14 +00:00
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'HOST': '127.0.0.1',
'PORT': 5433,
'NAME': "onlinejudge",
'USER': "onlinejudge",
'PASSWORD': 'onlinejudge'
2015-08-02 00:50:38 +00:00
}
}
2017-05-08 12:37:54 +00:00
# For celery
2015-12-07 11:15:28 +00:00
REDIS_QUEUE = {
"host": "127.0.0.1",
"port": 6379,
"db": 4
2015-12-07 11:15:28 +00:00
}
DEBUG = True
2017-01-24 08:11:46 +00:00
ALLOWED_HOSTS = ["*"]
2017-01-25 08:29:00 +00:00
TEST_CASE_DIR = "/tmp"
STATICFILES_DIRS = [
os.path.join(BASE_DIR, "static"),
]
2017-04-18 17:37:10 +00:00
LOG_PATH = "log/"