Files
ECS-FullStack/.gitignore
2025-10-02 17:31:49 -04:00

35 lines
506 B
Plaintext

# IDE and editor specific files
.vscode/
.idea/
# OS-specific files
.DS_Store
Thumbs.db
# Dependencies
/node_modules
/backend/node_modules
/frontend/node_modules
/discord-bot/node_modules
# Build output
/frontend/build
# Environment variables - IMPORTANT: never commit these files!
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
backend/.env
frontend/.env
discord-bot/.env
# Local database file
backend/db.json
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*