7cc5bddf73
Build & Deploy / build-and-deploy (push) Successful in 14s
- Add .env.example with Twitch credential instructions - Update docker-compose.yml to use env_file instead of inline comments - Add IGDB Metadata section to README with setup walkthrough - Add .env / .env.local to .gitignore to prevent secret leaks
43 lines
418 B
Plaintext
43 lines
418 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
frontend/node_modules/
|
|
|
|
# Environment — secrets
|
|
.env
|
|
.env.local
|
|
|
|
# Built output
|
|
frontend/dist/
|
|
dist/
|
|
|
|
# Maven / Java
|
|
target/
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
|
|
# Runtime data
|
|
data/games/*
|
|
data/artwork/*
|
|
data/saves/*
|
|
!data/games/.gitkeep
|
|
!data/artwork/.gitkeep
|
|
!data/saves/.gitkeep
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
|
|
# Test/upload artifacts
|
|
*.zip
|
|
*.ZIP
|
|
*.jsdos
|
|
*.JSDOS
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|