Skip to content

Commit

Permalink
include integration folder env file
Browse files Browse the repository at this point in the history
  • Loading branch information
aakash-rajur committed Nov 26, 2023
1 parent 1bddd63 commit f1a6a52
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ playground
gen
integration/go.mod
integration/go.sum
!integration/.env

dist/
cmd/validate
17 changes: 17 additions & 0 deletions integration/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
SQLXGEN_CONFIG_PATH=sqlxgen.yml

TMDB_PG_URL=postgres://app:app@localhost:54320/app
TMDB_PG_HOST=localhost
TMDB_PG_PORT=54320
TMDB_PG_DATABASE=app
TMDB_PG_USER=app
TMDB_PG_PASSWORD=app
TMDB_PG_SSLMODE=disable

TMDB_MYSQL_URL=app:app@localhost:33070/app
TMDB_MYSQL_HOST=localhost
TMDB_MYSQL_PORT=33070
TMDB_MYSQL_DATABASE=app
TMDB_MYSQL_USER=app
TMDB_MYSQL_PASSWORD=app
TMDB_MYSQL_SSLMODE=disable

0 comments on commit f1a6a52

Please sign in to comment.