happyDeliver/.gitignore
Pierre-Olivier Mercier 396c51974a
All checks were successful
continuous-integration/drone/push Build is passing
Extract OpenAPI schemas to separate file and move models to internal/model package
Split api/openapi.yaml schemas into api/schemas.yaml so structs can be
generated independently from the API server code. Models now generate
into internal/model/ via oapi-codegen, with the server referencing them
through import-mapping. Moved PtrTo helper to internal/utils and removed
storage.ReportSummary in favor of model.TestSummary.
2026-04-09 18:36:27 +07:00

30 lines
316 B
Text

# Binaries
/happydeliver
cmd/happyDeliver/happyDeliver
# Dependency directories
vendor/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Environment files
.env
.env.local
*.local
# Logs files
logs/
# Database files
*.db
*.sqlite
*.sqlite3
# OpenAPI generated files
internal/api/server.gen.go
internal/model/types.gen.go