Remove inline passwords from documentation connection strings

Co-authored-by: adilhafeez <13196462+adilhafeez@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-25 21:00:28 +00:00
parent 5a6b7349b3
commit a8a4336725
2 changed files with 6 additions and 12 deletions

View file

@ -64,8 +64,9 @@ After setting up the database table, configure your application to use Supabase
**Example:**
```bash
# If your password is "MyPass#123", encode it as "MyPass%23123"
export DATABASE_URL="postgresql://postgres.myproject:MyPass%23123@aws-0-us-west-2.pooler.supabase.com:5432/postgres"
# If your password is "MyPass#123", URL-encode special characters (# becomes %23)
export DB_PASSWORD="MyPass%23123"
export DATABASE_URL="postgresql://postgres.myproject:${DB_PASSWORD}@aws-0-us-west-2.pooler.supabase.com:5432/postgres"
```
### Testing the Connection