We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aff7ca commit c56353fCopy full SHA for c56353f
.cargo/config.toml
@@ -0,0 +1 @@
1
+[alias]
scripts/init_db.sh
@@ -54,10 +54,13 @@ until PGPASSWORD="${DB_PASSWORD}" psql -h "${DB_HOST}" -U "${DB_USER}" -p "${DB_
54
sleep 1
55
done
56
57
+# Echo successful message upon sussessful connection
58
>&2 echo "Postgres is up and running on port ${DB_PORT} - running migrations now!"
59
60
+# Run migrations
61
export DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
62
sqlx database create
63
sqlx migrate run
64
65
+# Echo successful message upon sussessful migration
66
>&2 echo "Postgres has been migrated, ready to go!"
0 commit comments