huanglin
huanglin
这家伙很懒,什么也没写!

注册于 1年前

回答
2
文章
0
关注者
0

  1. 进入项目目录 cd backend
  2. 在项目根目录中,复制 ./conf/env.example.py 文件为一份新的到 ./conf 文件夹下,并重命名为 env.py
  3. 在 env.py 中配置数据库信息
    mysql数据库版本建议:8.0
    mysql数据库字符集:utf8mb4
  4. 安装依赖环境
    pip3 install -r requirements.txt
  5. 执行迁移命令:
    python3 manage.py makemigrations
    python3 manage.py migrate
  6. 初始化数据
    python3 manage.py init
  7. 初始化省市县数据:
    python3 manage.py init_area
  8. 启动项目
    python3 manage.py runserver 0.0.0.0:8000

或使用 daphne :
daphne -b 0.0.0.0 -p 8000 application.asgi:application

发布
问题