mirror of
https://github.com/btouchard/ackify.git
synced 2026-05-05 06:29:37 -05:00
c38558fea6
- Move web server logic to pkg/web package for external imports - Rename cmd/ackify to cmd/community for clarity - Create NewServer(multitenant bool) function for EE integration - Add basic unit tests for Community Edition - Update Dockerfile to build from cmd/community - Add comprehensive build and deployment documentation This change enables the Enterprise Edition to import and extend the Community Edition while maintaining clean separation.
22 lines
582 B
Modula-2
22 lines
582 B
Modula-2
module github.com/btouchard/ackify-ce
|
|
|
|
go 1.24.5
|
|
|
|
require (
|
|
github.com/gorilla/securecookie v1.1.2
|
|
github.com/gorilla/sessions v1.4.0
|
|
github.com/julienschmidt/httprouter v1.3.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/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
|
|
)
|