add some tests
This commit is contained in:
@@ -6,9 +6,4 @@
|
||||
\___/ |_| |_||_||_||_| |_| \___| \___/ \__,_| \__,_| \__, | \___| |_.__/ \__, | \__, | \__,_| \__,_|
|
||||
|___/ |___/ |_|
|
||||
https://github.com/QingdaoU/OnlineJudge
|
||||
"""
|
||||
from __future__ import absolute_import
|
||||
|
||||
# This will make sure the app is always imported when
|
||||
# Django starts so that shared_task will use this app.
|
||||
from .celery import app as celery_app
|
||||
"""
|
||||
19
oj/celery.py
19
oj/celery.py
@@ -1,19 +0,0 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
import os
|
||||
|
||||
from celery import Celery
|
||||
|
||||
# set the default Django settings module for the 'celery' program.
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'oj.settings')
|
||||
|
||||
from django.conf import settings
|
||||
|
||||
app = Celery('oj')
|
||||
|
||||
# Using a string here means the worker will not have to
|
||||
# pickle the object when using Windows.
|
||||
app.config_from_object('django.conf:settings')
|
||||
|
||||
# load task modules from all registered Django app configs.
|
||||
app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)
|
||||
@@ -1,23 +1,4 @@
|
||||
# coding=utf-8
|
||||
import os
|
||||
|
||||
|
||||
WEBSITE_INFO = {"website_name": u"example大学 OnlineJudge",
|
||||
"website_name_shortcut": u"example oj",
|
||||
"website_footer": u"example大学foobar学院 <a href=\"http://www.miibeian.gov.cn/\">京ICP备10086号-1</a>",
|
||||
# url结尾没有/
|
||||
"url": u"http://your-domain-or-ip.com"}
|
||||
|
||||
|
||||
SMTP_CONFIG = {"smtp_server": "smtp.domain.com",
|
||||
"email": "noreply@domain.com",
|
||||
"password": "your_password",
|
||||
"tls": False}
|
||||
|
||||
|
||||
# 是否显示所有人的提交, False就只显示自己的
|
||||
SHOW_ALL_SUBMISSIONS_LIST = False
|
||||
|
||||
|
||||
# please set your own SECRET_KEY to a long random string
|
||||
# SECRET_KEY = ""
|
||||
|
||||
Reference in New Issue
Block a user