Add Docker Compose and backend Dockerfile

Include .gitignore, go.mod/go.sum, initial Go source, init.sql, and
Docker‑Compose
configuration for the MSSQL and backend services.
This commit is contained in:
2026-01-18 14:56:59 -05:00
parent fb3e983eff
commit fa1ad45ed8
12 changed files with 516 additions and 0 deletions

11
backend/go.mod Normal file
View File

@@ -0,0 +1,11 @@
module backend
go 1.22
require github.com/denisenkom/go-mssqldb v0.12.3
require (
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe // indirect
github.com/golang-sql/sqlexp v0.1.0 // indirect
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
)