From 34f7e861dcf1389205fcb259cd835ca59910abe6 Mon Sep 17 00:00:00 2001 From: Kyle Gunby Date: Tue, 20 Jun 2023 17:18:53 -0500 Subject: [PATCH] White space --- docs/app/database/database-management.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/app/database/database-management.md b/docs/app/database/database-management.md index 08cf076..dcff641 100644 --- a/docs/app/database/database-management.md +++ b/docs/app/database/database-management.md @@ -11,8 +11,9 @@ ## Basic operations ### Initialize -To start a local Postgres database container in a detached state and run any -pending migrations, run `make init-db`. Running `make init` will also call `init-db` automatically. +To start a local Postgres database container in a detached state and run any +pending migrations, run `make init-db`. During initial setup, `init-db` is called +automatically when running `make init`. ### Start @@ -31,7 +32,9 @@ To clean the database, use the following command: make db-recreate ``` -This will remove _all_ docker project volumes, rebuild the database volume, and run all pending migrations. Once completed, only the database container will be running. Simply run `make start` to bring up all other project containers. +This will remove _all_ docker project volumes, rebuild the database volume, and +run all pending migrations. Once completed, only the database container will be +running. Simply run `make start` to bring up all other project containers. ## Running migrations