63 lines
706 B
Plaintext
63 lines
706 B
Plaintext
# Node
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/.next/
|
|
frontend/out/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
backend/venv/
|
|
backend/.venv/
|
|
*.egg-info/
|
|
|
|
# Environment
|
|
.env
|
|
backend/.env
|
|
frontend/.env.local
|
|
.env.production
|
|
!.env.example
|
|
!.env.production.example
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Docker
|
|
postgres_data/
|
|
redis_data/
|
|
|
|
# Cache
|
|
.npm-cache/
|
|
.pytest_cache/
|
|
tsconfig.tsbuildinfo
|
|
|
|
# Test artifacts
|
|
frontend/test-results/
|
|
frontend/playwright-report/
|
|
|
|
# Temp debug files
|
|
login_headers.txt
|
|
login_resp.json
|
|
test_login.js
|
|
test_login2.js
|
|
testfile2.txt
|
|
backend/.coverage
|
|
backend/htmlcov/
|
|
frontend/test-results/
|
|
frontend/playwright-report/
|