feat: Initialize project with FastAPI backend, React web UI, Vercel sync, and API integrations.

This commit is contained in:
CJACK
2026-02-01 02:17:01 +08:00
parent fc7de77151
commit bc260899c1
35 changed files with 5730 additions and 1954 deletions

33
.gitignore vendored
View File

@@ -1,5 +1,6 @@
*.bak
config.json
.env
# Python
__pycache__/
@@ -47,3 +48,35 @@ uvicorn.log
# Vercel
.vercel
# Node.js / Frontend
node_modules/
webui/node_modules/
webui/dist/
static/admin/
.npm
.pnpm-store/
package-lock.json
yarn.lock
pnpm-lock.yaml
# Build artifacts
*.tsbuildinfo
.cache/
.parcel-cache/
# Environment
.env.local
.env.*.local
# Testing
.coverage
htmlcov/
.pytest_cache/
.tox/
# Misc
*.pyc
*.pyo
.git/
Thumbs.db