Skip to content

Commit c56353f

Browse files
committed
chore: comment postgre docker initialization.
1 parent 5aff7ca commit c56353f

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.cargo/config.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[alias]

scripts/init_db.sh

+3
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,13 @@ until PGPASSWORD="${DB_PASSWORD}" psql -h "${DB_HOST}" -U "${DB_USER}" -p "${DB_
5454
sleep 1
5555
done
5656

57+
# Echo successful message upon sussessful connection
5758
>&2 echo "Postgres is up and running on port ${DB_PORT} - running migrations now!"
5859

60+
# Run migrations
5961
export DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
6062
sqlx database create
6163
sqlx migrate run
6264

65+
# Echo successful message upon sussessful migration
6366
>&2 echo "Postgres has been migrated, ready to go!"

0 commit comments

Comments
 (0)