- model list: any model with max_reference_images>0 shows 首尾帧 N (frame mode) or 参考图 N (asset/other); drop the count-less "图生图" label - ModelFormModal / TestModal: capability labels use 参考图 (not 图生图) - grok-video uses reference_mode=asset (参考图), runway/adobe video stay frame (首尾帧) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
# ======================================================================
|
|
# Backend is OPEN-SOURCE — ship the Go source. Only secrets / data /
|
|
# build artifacts under backend/ stay ignored.
|
|
# ======================================================================
|
|
/backend/.env
|
|
/backend/.env.local
|
|
/backend/.env.*.local
|
|
/backend/data/
|
|
/backend/bin/
|
|
|
|
# ======================================================================
|
|
# Private — not shipped to users (internal deploy scripts + secrets).
|
|
# deploy/ holds the maintainer's SSH/deploy + test scripts with hardcoded
|
|
# server host, root password and API keys. NEVER commit.
|
|
# ======================================================================
|
|
/deploy/
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
/backend/.env
|
|
api_test_video.py # hardcoded API key
|
|
|
|
# ======================================================================
|
|
# Secrets / captures / clutter — MUST NOT be published
|
|
# ======================================================================
|
|
# browser HAR captures contain real cookies/tokens
|
|
*.har
|
|
# stray source/backup archives
|
|
*.zip
|
|
# prebuilt binaries (backend is built from source now)
|
|
/dist/
|
|
# stray debug screenshots pasted into the repo root
|
|
/6cfa6628d28a895f234fc2a4488a0d43.png
|
|
/QQ_*.png
|
|
|
|
# ======================================================================
|
|
# Dependencies / build output
|
|
# ======================================================================
|
|
node_modules/
|
|
/frontend/dist/
|
|
/frontend/.vite/
|
|
|
|
# Go build/module caches (regenerated)
|
|
.gocache/
|
|
.gomodcache/
|
|
*.exe
|
|
*.exe~
|
|
*.out
|
|
*.test
|
|
|
|
# ======================================================================
|
|
# Runtime / logs / OS / editor
|
|
# ======================================================================
|
|
*.log
|
|
*.tmp
|
|
/backend/data/
|
|
__pycache__/
|
|
*.pyc
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
|
|
# fast-deploy build artifact
|
|
/frontend/dist.tar.gz
|