Skip to content

Commit

Permalink
Update CONTRIBUTING.md to reflect new DB_URL (#140)
Browse files Browse the repository at this point in the history
Since we recently switched over from using `asyncpg` to `psycopg2` as the DBAPI for SQLAlchemy, we want this to be accurately documented as the default `DB_URL` set as the environment variable

Signed-off-by: Robin <[email protected]>
  • Loading branch information
Robin5605 authored Jul 28, 2023
1 parent 3962c58 commit bbd1e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ You'll need to have the following environment variables set.
| | | | |
| `EMAIL_RECIPIENT` | str | "[email protected]" | The recipient address of report emails |
| `BCC_RECIPIENTS` | set | set() | Additional addresses that should be BCC'd in email reports. Defaults to an empty set. |
| `DB_URL` | str | "postgresql+asyncpg://postgres:postgres@localhost:5432" | PostgreSQL database connection string |
| `DB_URL` | str | "postgresql+psycopg2://postgres:postgres@localhost:5432" | PostgreSQL database connection string |
| | | | |
| `SENTRY_DSN` | str | "" | Sentry Data Source Name (DSN) |
| `SENTRY_ENVIRONMENT` | str | "" | Sentry environment |
Expand Down

0 comments on commit bbd1e76

Please sign in to comment.