dingdanquanliucheng/backend
2026-05-15 12:32:45 +08:00
..
app feat: complete database migrations and bootstrap setup 2026-05-15 12:32:45 +08:00
migrations feat: complete database migrations and bootstrap setup 2026-05-15 12:32:45 +08:00
scripts feat: complete database migrations and bootstrap setup 2026-05-15 12:32:45 +08:00
.env.example 基础框架搭建 2026-05-14 13:51:06 +08:00
alembic.ini 基础框架搭建 2026-05-14 13:51:06 +08:00
main.py 一期内容开发0.1 2026-05-14 10:15:51 +08:00
README.md feat: complete database migrations and bootstrap setup 2026-05-15 12:32:45 +08:00
requirements.txt feat: complete real customer import and web auth flow 2026-05-15 12:18:50 +08:00

Backend

当前进度

  • 已完成 FastAPI 基础工程初始化
  • 已完成 /health 健康检查接口
  • 已完成 .env.examplerequirements.txt
  • 已完成 SQLAlchemy 模型与 Alembic 初始迁移
  • 已完成角色、菜单、配置、分类、管理员初始化脚本

启动方式

uvicorn main:app --reload

数据库迁移

执行 Alembic 迁移:

alembic upgrade head

初始化数据

迁移后执行初始化脚本:

python scripts/bootstrap_data.py

初始化内容包括:

  • 角色:admin / salesman / manager / driver
  • 菜单与角色授权关系
  • 系统配置
  • 默认产品分类
  • 默认管理员账号 admin01