All checks were successful
continuous-integration/drone/push Build is passing
- Remove inline comments from docker-compose-simple.yml for cleaner configuration - Delete unused docker-compose.txt.backup file - Remove unused volume definitions (servers-data, users-data) - Add docker-compose-simple.yml to .gitignore to prevent accidental commits - Simplify environment variable organization by removing comment separators - Improve file maintainability by reducing comment clutter
42 lines
415 B
Plaintext
42 lines
415 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
|
|
# Node
|
|
node_modules/
|
|
dist/
|
|
.vite/
|
|
*.log
|
|
|
|
# Servers
|
|
backend/servers/
|
|
backend/.env.exemple
|
|
servers
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
frontend/.env.local
|
|
frontend/.env.production.local
|
|
|
|
# Build
|
|
frontend/dist/
|
|
backend/build/
|
|
backend/users1.json.backup
|
|
docker-compose.txt
|
|
docker-compose-simple.yml
|