(Feat): Initial Commit
Some checks failed
Build & Test / build-test (push) Has been cancelled
Build & Test / swagger-codegen-cli (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled

This commit is contained in:
2026-07-03 19:41:31 +05:30
commit 7e940c83a7
461 changed files with 45002 additions and 0 deletions

22
.github/workflows/docker.env vendored Normal file
View File

@@ -0,0 +1,22 @@
CI=true
GITHUB_ACTIONS=true
# required: env for main working database, service
# default for sql-migrate (target development) and psql cli tool
PGDATABASE=development
PGUSER=dbuser
PGPASSWORD=dbpass
PGHOST=postgres
PGPORT=5432
PGSSLMODE=disable
# optional: env for sql-boiler (ability to generate models out of a "spec" database)
# sql-boiler should operate on a "spec" database only
PSQL_DBNAME=spec
PSQL_USER=dbuser
PSQL_PASS=dbpass
PSQL_HOST=postgres
PSQL_PORT=5432
PSQL_SSLMODE=disable
# optional: project root directory, used for relative path resolution (e.g. fixtures)
PROJECT_ROOT_DIR=/app