Skip to content

Commit

Permalink
fix: environment variable for db ssl mode
Browse files Browse the repository at this point in the history
  • Loading branch information
tankerkiller125 committed Oct 30, 2024
1 parent 5033a9c commit 2040fe9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ tasks:
HBOX_DATABASE_DATABASE: homebox
HBOX_DATABASE_HOST: localhost
HBOX_DATABASE_PORT: 5432
HBOX_DATABASE_SSLMODE: disable
HBOX_DATABASE_SSL_MODE: disable
desc: Starts the backend api server with postgresql (depends on generate task)
dir: backend
deps:
Expand Down Expand Up @@ -140,7 +140,7 @@ tasks:
HBOX_DATABASE_DATABASE: homebox
HBOX_DATABASE_HOST: localhost
HBOX_DATABASE_PORT: 5432
HBOX_DATABASE_SSLMODE: disable
HBOX_DATABASE_SSL_MODE: disable
desc: Runs the database diff engine to generate a SQL migration files for postgresql
deps:
- db:generate
Expand Down Expand Up @@ -188,7 +188,7 @@ tasks:
HBOX_DATABASE_DATABASE: homebox
HBOX_DATABASE_HOST: postgres
HBOX_DATABASE_PORT: 5432
HBOX_DATABASE_SSLMODE: disable
HBOX_DATABASE_SSL_MODE: disable
desc: Runs end-to-end test on a live server with postgresql (only for use in CI)
cmds:
- cd backend && go build ./app/api
Expand Down

0 comments on commit 2040fe9

Please sign in to comment.