UI:脚本助手模型框从『原生 select + inline style』换成复用设计系统的 chip 下拉(向上展开,新增共享 .align-up 变体),去 inline、合规范。并发:本地 worker 从 -P solo(单任务串行=一次只生成一张)改 -P threads -c 4;生产 k8s worker --concurrency 2→4。基础资产/故事板/视频出图可并行。loading 动画基础设施(卡内+全局 spinner)已验证存在。 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
45 lines
1.1 KiB
Markdown
45 lines
1.1 KiB
Markdown
# AirShelf Backend
|
|
|
|
All backend code lives under `AirShelf/core/backend` by project decision.
|
|
|
|
## Local bootstrap
|
|
|
|
```bash
|
|
cd /Users/maidong/Desktop/zyc/qiyuan_gitea/AirShelf/core/backend
|
|
python3.12 -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
cp .env.example .env
|
|
python manage.py migrate
|
|
python manage.py runserver 0.0.0.0:8000
|
|
```
|
|
|
|
Start workers in separate terminals:
|
|
|
|
```bash
|
|
cd /Users/maidong/Desktop/zyc/qiyuan_gitea/AirShelf/core/backend
|
|
source .venv/bin/activate
|
|
celery -A airshelf worker -l info -P threads -c 4 # 线程池 4 并发(出图/视频可并行;勿用 -P solo 串行)
|
|
```
|
|
|
|
`ffmpeg` must be available on `PATH` for Stage5 export jobs.
|
|
|
|
## Runtime layout
|
|
|
|
- Django project: `airshelf`
|
|
- Domain apps: `apps/*`
|
|
- Settings module: `airshelf.settings.development`
|
|
- Celery app: `airshelf.celery`
|
|
|
|
Secrets must be supplied by environment variables or `.env`; never commit values from `account.md`.
|
|
|
|
## Useful commands
|
|
|
|
```bash
|
|
python manage.py check
|
|
python manage.py makemigrations --check --dry-run
|
|
python manage.py migrate
|
|
python manage.py bootstrap_volcano_models
|
|
python manage.py test apps.accounts apps.projects apps.billing
|
|
```
|