mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-04 11:31:53 +00:00
21 lines
612 B
Python
21 lines
612 B
Python
# 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}
|
|
|
|
# please set your own SECRET_KEY to a long random string
|
|
# SECRET_KEY = ""
|
|
|
|
|