Architecture Decision Record for a Go-based HTTP stub/mock service (Mountebank alternative) with Web UI and LLM-powered config generation. Covers: component architecture, technology choices (Go + chi + Templ/htmx + SQLite), API design, data model, deployment model.
37 lines
246 B
Plaintext
37 lines
246 B
Plaintext
# Binaries
|
|
stub-service
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Build output
|
|
/bin/
|
|
/dist/
|
|
|
|
# Test
|
|
*.test
|
|
*.out
|
|
coverage.html
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Data
|
|
/data/
|
|
*.db
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|