33 lines
401 B
Plaintext
33 lines
401 B
Plaintext
# Go
|
|
/api/server
|
|
*.test
|
|
*.out
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
|
|
# Env / local
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Node / admin frontend
|
|
node_modules/
|
|
|
|
# Keep the embedded SPA placeholder (real build is injected during Docker build)
|
|
!api/internal/adminweb/dist/
|
|
!api/internal/adminweb/dist/index.html
|
|
|
|
# OS / editors
|
|
.DS_Store
|
|
*.swp
|
|
.idea/
|
|
.vscode/
|