Files
dostalgia/.gitignore
T
David Alvarez 28ea711b24 Migrate backend from Go to Quarkus (Java 21 / JAX-RS)
- Replaced Go stdlib server with Quarkus (RESTEasy Reactive + Jackson)
- 7 Java classes: Game POJO, GameService (JSON file I/O), 4 REST resources, static file serving
- Same JSON-per-game storage, same ZIP upload + bundle creation
- Same Svelte frontend (unchanged), built into the JAR via maven-resources-plugin
- Multi-stage Dockerfile: Node → Maven → JRE runtime
2026-05-24 15:41:51 +02:00

39 lines
375 B
Plaintext

# Dependencies
node_modules/
frontend/node_modules/
# 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