Add config package with build-tag-switched dev/prod environments, structured logging via zerolog, Taskfile for dev workflow, golangci-lint config, testutil package, and improved DB setup with proper SQLite pragmas and cleanup. Rename sqlc output package from gen to repository. Switch to allowlist .gitignore, Alpine+UPX+scratch Dockerfile, and CI pipeline with test/lint gates before deploy.
54 lines
2.1 KiB
Modula-2
54 lines
2.1 KiB
Modula-2
module github.com/ryanhamamura/c4
|
|
|
|
go 1.25.4
|
|
|
|
require (
|
|
github.com/alexedwards/scs/sqlite3store v0.0.0-20251002162104-209de6e426de
|
|
github.com/alexedwards/scs/v2 v2.9.0
|
|
github.com/google/uuid v1.6.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/pressly/goose/v3 v3.27.0
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/ryanhamamura/via v0.23.0
|
|
golang.org/x/crypto v0.48.0
|
|
modernc.org/sqlite v1.46.1
|
|
)
|
|
|
|
require (
|
|
github.com/CAFxX/httpcompression v0.0.9 // indirect
|
|
github.com/andybalholm/brotli v1.2.0 // indirect
|
|
github.com/antithesishq/antithesis-sdk-go v0.5.0 // indirect
|
|
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
|
|
github.com/delaneyj/toolbelt v0.9.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/google/go-tpm v0.9.7 // indirect
|
|
github.com/hookenz/gotailwind/v4 v4.2.1 // indirect
|
|
github.com/klauspost/compress v1.18.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mfridman/interpolate v0.0.2 // indirect
|
|
github.com/minio/highwayhash v1.0.4-0.20251030100505-070ab1a87a76 // indirect
|
|
github.com/nats-io/jwt/v2 v2.8.0 // indirect
|
|
github.com/nats-io/nats-server/v2 v2.12.2 // indirect
|
|
github.com/nats-io/nats.go v1.48.0 // indirect
|
|
github.com/nats-io/nkeys v0.4.12 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/ncruces/go-strftime v1.0.0 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/sethvargo/go-retry v0.3.0 // indirect
|
|
github.com/starfederation/datastar-go v1.0.3 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/exp v0.0.0-20260218203240-3dfff04db8fa // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.41.0 // indirect
|
|
golang.org/x/time v0.14.0 // indirect
|
|
maragu.dev/gomponents v1.2.0 // indirect
|
|
modernc.org/libc v1.68.0 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.11.0 // indirect
|
|
)
|
|
|
|
tool github.com/hookenz/gotailwind/v4
|