chore: (docs) update v2 contributing docs with updates db paths

This commit is contained in:
Vineeth Voruganti 2026-04-01 11:53:25 -04:00
parent a1a4c3f93c
commit bcc9351704
1 changed files with 2 additions and 2 deletions

View File

@ -96,14 +96,14 @@ If you have this in `config.toml`:
```toml
[db]
CONNECTION_URI = "postgresql://localhost/honcho_dev"
CONNECTION_URI = "postgresql+psycopg://localhost/honcho_dev"
POOL_SIZE = 10
```
You can override just the connection URI in production:
```bash
export DB_CONNECTION_URI="postgresql://prod-server/honcho_prod"
export DB_CONNECTION_URI="postgresql+psycopg://prod-server/honcho_prod"
```
The application will use the production connection URI while keeping the pool size from config.toml.