Files
Charon/.gitignore
Wikid82 d6bfb0c3c9 chore: update gitignore and restore backend files
- Add backend/node_modules to .gitignore
- Untrack backend/node_modules from git
- Restore backend source files (go.mod, main.go, etc.) that were missing in HEAD
- Include frontend test updates
2025-11-19 21:45:21 -05:00

71 lines
714 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
ENV/
.pytest_cache/
.coverage
*.cover
.hypothesis/
htmlcov/
# Node/Frontend
frontend/node_modules/
backend/node_modules/
frontend/dist/
frontend/coverage/
frontend/.vite/
frontend/*.tsbuildinfo
# Go/Backend
backend/api
backend/*.out
backend/coverage/
backend/coverage.*.out
# Databases
*.db
*.sqlite
*.sqlite3
backend/data/*.db
backend/cmd/api/data/*.db
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
*.code-workspace
# Logs
*.log
logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment
.env
.env.*
!.env.example
# OS
Thumbs.db
# Caddy
backend/data/caddy/
# Docker
docker-compose.override.yml
# Testing
coverage/
*.xml