-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,6 +99,7 @@ This project uses asdf, and there is a .tool-versions file at the project root. | |
HTTP origin of portal (default 'http://portal.localhost:8000'): | ||
Phone OTP Mode (sms, whatsapp, whatsapp_sms) (default 'sms'): sms | ||
Would you like to turn off email verification? (In case you don't have SMTP credentials in your initial setup) [Y/N] (default 'false'): | ||
Select a service for searching (elasticsearch, postgresql, none) (default 'elasticsearch'): | ||
Database URL (default 'postgres://postgres:[email protected]:5432/postgres?sslmode=disable'): postgres://postgres:[email protected]:5432/app?sslmode=disable | ||
Database schema (default 'public'): | ||
Audit Database URL (default 'postgres://postgres:[email protected]:5432/postgres?sslmode=disable'): postgres://postgres:[email protected]:5432/audit?sslmode=disable | ||
|
@@ -165,7 +166,8 @@ This project uses asdf, and there is a .tool-versions file at the project root. | |
1. Start the database | ||
```sh | ||
docker compose up -d db | ||
docker compose build db | ||
docker compose up -d db pgbouncer | ||
``` | ||
2. Apply migrations | ||
|