mirror of
https://github.com/btouchard/ackify-ce.git
synced 2026-02-08 06:48:32 -06:00
- Add golang-migrate based migration CLI in cmd/migrate/ - Extract hardcoded SQL migrations from connection.go to proper migration files - Create 0001_init migration with complete signatures table schema - Remove embedded migrations from Go code for cleaner separation - Support up/down/version/drop migration operations - Migration files follow semantic versioning starting at 0001
25 lines
721 B
Modula-2
25 lines
721 B
Modula-2
module github.com/btouchard/ackify-ce
|
|
|
|
go 1.24.5
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.2.3
|
|
github.com/golang-migrate/migrate/v4 v4.19.0
|
|
github.com/gorilla/securecookie v1.1.2
|
|
github.com/gorilla/sessions v1.4.0
|
|
github.com/lib/pq v1.10.9
|
|
github.com/stretchr/testify v1.11.1
|
|
golang.org/x/oauth2 v0.31.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.13.1 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|