first commit

This commit is contained in:
2026-03-09 14:46:56 +08:00
commit 62236eb80e
63 changed files with 6143 additions and 0 deletions

51
.gitignore vendored Normal file
View File

@@ -0,0 +1,51 @@
# macOS
.DS_Store
# Python
__pycache__/
*.py[cod]
*.so
.Python
.venv/
venv/
env/
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# SQLite / local DB
*.db
*.sqlite
*.sqlite3
# Node / frontend
node_modules/
dist/
*.tsbuildinfo
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# IDE
.idea/
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
# Environment
.env
.env.local
.env.*.local
# Uploads / generated files
backend/uploads/*
!backend/uploads/.gitkeep
# Build artifacts
build/
tmp/
*.log