Files
fete/.gitignore
nitrix 5ad6a08b72 T-5: set up API-first tooling with OpenAPI spec as single source of truth
Backend: openapi-generator-maven-plugin generates Spring interfaces and DTOs
from the spec. Frontend: openapi-typescript + openapi-fetch provide type-safe
API access. Both sides get compile-time contract enforcement from a single
api.yaml file.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 18:06:00 +01:00

58 lines
641 B
Plaintext

# IDE
.idea/
.vscode/
*.iml
# OS
.DS_Store
Thumbs.db
# Claude Code (machine-local)
.claude/settings.local.json
.rodney/
.agent-tests/
# Java/Maven
*.class
*.jar
*.war
*.ear
*.nar
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
.mvn/wrapper/maven-wrapper.jar
.classpath
.project
.settings/
.factorypath
.springBeans
.sts4-cache
hs_err_pid*
replay_pid*
*.log
# Node.js/Vue/Vite
node_modules/
dist/
build/
frontend/src/api/schema.d.ts
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
npm-debug.log*
# Environment
.env
.env.*
!.env.example
# Editor swap files
*.swp
*.swo
*~
\#*\#
.#*