OnlineJudge/oj/local_settings.py

36 lines
653 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': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
2015-08-17 04:48:10 +00:00
},
# submission 的 name 和 engine 请勿修改,其他代码会用到
2015-08-17 04:48:10 +00:00
'submission': {
2015-10-20 12:09:23 +00:00
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db1.sqlite3'),
2015-08-02 00:50:38 +00:00
}
}
2015-09-12 12:00:56 +00:00
REDIS_CACHE = {
2015-10-20 12:09:23 +00:00
"host": "127.0.0.1",
2015-09-12 12:00:56 +00:00
"port": 6379,
"db": 1
}
2015-12-07 11:15:28 +00:00
REDIS_QUEUE = {
"host": "127.0.0.1",
"port": 6379,
"db": 2
}
DEBUG = True
2017-01-24 08:11:46 +00:00
ALLOWED_HOSTS = ["*"]
2017-01-25 08:29:00 +00:00
TEST_CASE_DIR = "/tmp"