Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
2b079c9
feat: Add Grafana service for dashboard and data source management
GabrielTenma Mar 15, 2026
906eaba
refactor: Update documentation structure and service naming conventions
GabrielTenma Mar 15, 2026
90e7da8
refactor: simplify flag parsing and config loading in main.go
GabrielTenma Mar 16, 2026
91facce
refactor: rename launch configurations and update build script docume…
GabrielTenma Mar 16, 2026
486a08e
refactor: migrate Docker build scripts to Go-based cross-platform imp…
GabrielTenma Mar 16, 2026
428dddb
refactor: reorganize build script structure and improve project root …
GabrielTenma Mar 17, 2026
7960f3b
refactor: remove unused module import and fix comment typo
GabrielTenma Mar 18, 2026
91fd301
refactor: add WireName and Get methods to service interfaces
GabrielTenma Mar 19, 2026
e6420ac
refactor: restructure app initialization with step-based pattern
GabrielTenma Mar 26, 2026
83ad799
refactor: remove duplicate blueprint documentation sections
GabrielTenma Mar 26, 2026
f26f120
refactor: simplify main function and implement dependency injection p…
GabrielTenma Mar 26, 2026
13dcca9
refactor: simplify default app name and update architecture documenta…
GabrielTenma Mar 27, 2026
d4d1b11
docs: add testing infrastructure and metrics documentation
GabrielTenma Mar 27, 2026
48a1604
docs: add Swagger API documentation and refactor flag parsing
GabrielTenma Mar 28, 2026
32ad40a
refactor: service generator
GabrielTenma Mar 28, 2026
8af93b3
feat(service-generator): add optional test file generation
GabrielTenma Mar 28, 2026
bc481a9
feat(minio): Integrate MinIO as top-level service and update configur…
GabrielTenma Mar 28, 2026
f04ccdf
refactor(infrastructure): introduce component registry pattern
GabrielTenma Mar 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go-version: '1.21'

- name: Build
run: go build -v ./cmd/app/main.go
run: go build -v ./cmd/app/

- name: Test
run: go test -v ./...
74 changes: 0 additions & 74 deletions .github/workflows/jekyll.yml

This file was deleted.

6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package MAC",
"name": "Launch Package (Darwin)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/app/main.go",
"output": "${workspaceFolder}/stackyard"
},
{
"name": "Launch Server WIN",
"name": "Launch Server (Unix)",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}\\cmd\\app\\main.go",
"output": "${workspaceFolder}\\debug-main.exe"
},
{
"name": "Build & Launch (Dist) WIN",
"name": "Build & Launch Dist (Unix)",
"type": "go",
"request": "launch",
"mode": "exec",
Expand Down
Loading
Loading