Skip to content

Commit

Permalink
fix: create-db.sh reference correct script
Browse files Browse the repository at this point in the history
  • Loading branch information
yamcodes committed Oct 9, 2023
1 parent 24e94f6 commit 6099902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create-db.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
source .env

# Run wait-for-it.sh with the sourced environment variables
./wait-for-it.sh db:5432 -- strict --timeout=60 -- psql -h db -U ${POSTGRES_USER} -d ${POSTGRES_DB} -c 'SELECT 1;' && bun db:migrate && bun db:seed
./scripts/wait-for-it.sh db:5432 -- strict --timeout=60 -- psql -h db -U ${POSTGRES_USER} -d ${POSTGRES_DB} -c 'SELECT 1;' && bun db:migrate && bun db:seed

0 comments on commit 6099902

Please sign in to comment.