Initial Plast Track MVP
This commit is contained in:
71
.gitignore
vendored
Normal file
71
.gitignore
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
# Secrets and local environment
|
||||
.env
|
||||
.env.*
|
||||
.env.gitea
|
||||
*.pem
|
||||
*.key
|
||||
*.crt
|
||||
*.p12
|
||||
*.pfx
|
||||
secrets/
|
||||
|
||||
# OS and editor files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Logs and runtime files
|
||||
*.log
|
||||
logs/
|
||||
*.pid
|
||||
*.seed
|
||||
|
||||
# Node / frontend artifacts
|
||||
node_modules/
|
||||
frontend/node_modules/
|
||||
frontend/dist/
|
||||
frontend/build/
|
||||
frontend/coverage/
|
||||
frontend/.vite/
|
||||
frontend/*.tsbuildinfo
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Python / backend artifacts
|
||||
__pycache__/
|
||||
**/__pycache__/
|
||||
*.py[cod]
|
||||
*.pyo
|
||||
*.pyd
|
||||
.pytest_cache/
|
||||
backend/.pytest_cache/
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.venv/
|
||||
venv/
|
||||
backend/.venv/
|
||||
|
||||
# Local databases and generated data
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
*.db
|
||||
pgdata/
|
||||
postgres-data/
|
||||
mosquitto/data/
|
||||
mosquitto/log/
|
||||
|
||||
# Docker / compose local overrides
|
||||
docker-compose.override.yml
|
||||
compose.override.yml
|
||||
|
||||
# Local archives and non-production notes
|
||||
archive/
|
||||
archive/*
|
||||
Reference in New Issue
Block a user