- Makefile: -include .env (soft) so fresh clone doesn't hard-fail
- main.go: replace log.Fatalf-in-goroutine with error channel; startup
failures now reach main goroutine so defer pool.Close() always runs
- main.go: context.WithTimeout(30s) on database.Connect to fail fast
instead of hanging indefinitely on unreachable Postgres
- router.go: store pool on Echo context via middleware so future story
handlers can retrieve it with c.Get("pool")
- config.go: require DATABASE_URL explicitly (log.Fatal if missing)
instead of falling back to hardcoded credentials
- HelloWorld.test.ts: URL-aware fetch stub + afterEach restoreAllMocks;
add flushPromises test verifying backend status renders
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/jackc/pgx/v5/pgxpool"
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/labstack/echo/v4/middleware"
|
|
|
|
"osdb/internal/handler"
|
|
)
|
|
|
|
// New creates and configures the Echo instance with all routes registered.
|
|
// pool is stored on Echo's context so all handlers added by future stories
|
|
// (#2 fruits, #4 publications, #7 thumbnails, #8 auth) can retrieve it via
|
|
// c.Get("pool").(*pgxpool.Pool).
|
|
//
|
|
// Extension point: story #2, #4, #7, #8 route groups are added here.
|
|
func New(pool *pgxpool.Pool) *echo.Echo {
|
|
e := echo.New()
|
|
e.HideBanner = true
|
|
|
|
// Global middleware
|
|
e.Use(middleware.Logger())
|
|
e.Use(middleware.Recover())
|
|
|
|
// Make pool available to all handlers via Echo context.
|
|
e.Use(func(next echo.HandlerFunc) echo.HandlerFunc {
|
|
return func(c echo.Context) error {
|
|
c.Set("pool", pool)
|
|
return next(c)
|
|
}
|
|
})
|
|
|
|
health := handler.NewHealthHandler()
|
|
|
|
// Root health — used by docker healthcheck + ops tooling
|
|
e.GET("/health", health.Health)
|
|
|
|
// Versioned API group
|
|
api := e.Group("/api/v1")
|
|
api.GET("/health", health.Health)
|
|
|
|
// Future story groups (fruits, publications, admin, auth) are added here.
|
|
|
|
return e
|
|
}
|