setting

#里面写app名
INSTALLED_APPS = [
'polls',
]

#写templates和static路径
TEMPLATES = [
{
'DIRS': [
os.path.join(BASE_DIR, 'web/templates'),
os.path.join(BASE_DIR, 'web/static'),
],

]
#数据库
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}

#上海时区
TIME_ZONE = 'Asia/Shanghai'
USE_TZ = False

原文地址:https://www.cnblogs.com/mznsndy/p/11314214.html