Files
yingqing/core/backend
zycandClaude Opus 4.8 a020a3153a fix(ai): 图片创作自由模式改用 _FREE_VARIATIONS,第2张起不再凭空出广告文案
纯文生图同批多张时复用了套图的 _COVER_VARIATIONS,其中"卖点文案分区/
留出标题价签区"等指令让模型在第2张起自己画出护肤广告文案。自由模式
新建 _FREE_VARIATIONS(只换视角/景别/光线/机位),并显式禁止画面加任何
文字/卖点/标题/价签。套图 mode=cover 仍用 _COVER_VARIATIONS,不受影响。

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-30 13:34:44 +08:00
..

AirShelf Backend

All backend code lives under AirShelf/core/backend by project decision.

Local bootstrap

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:

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

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