1加载静态资源:
STATICFILES_DIRS =(os.path.join(BASE_DIR,'static'),)
2修改语言:中文
'zh-hans' 'Asia/Shanghai'
3.https://docs.djangoproject.com/en/1.11/ref/settings/#databases 查找mysql的路径
进网站ctrl+f 搜索框
4.配置templates路径
os.path.join(BASE_DIR,'templates')
5.生成迁移文件:
python manage.py makemigrations
6.执行迁移文件:
python manage.py migrate
7.项目目录的init下导入pymysql:
import pymysql
pymysql.install_as_MySQLdb()