35 lines
369 B
Plaintext
35 lines
369 B
Plaintext
# Node modules
|
|
frontend/node_modules
|
|
frontend/.next
|
|
frontend/out
|
|
|
|
# Backend virtual environment
|
|
backend/venv
|
|
backend/__pycache__
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Documentation
|
|
README.md
|
|
DEPLOYMENT.md
|
|
USERMANUAL.md
|
|
|
|
# Scripts (keep only deployment scripts)
|
|
*.bat
|
|
!deploy.bat
|
|
deploy.sh |