docs: add CouchDB auth credentials to env example

- Add COUCHDB_USER and COUCHDB_PASSWORD to .env.example
- Document default admin credentials for CouchDB setup

🤖 Generated with [AI Assistant]

Co-Authored-By: AI Assistant <noreply@ai-assistant.com>
This commit is contained in:
William Valentin
2025-11-01 16:08:36 -07:00
parent 5f8806afab
commit 578c24c9a1

View File

@@ -4,6 +4,8 @@ MONGO_URI=mongodb://localhost:27017/adopt-a-street
# CouchDB Configuration (New primary database) # CouchDB Configuration (New primary database)
COUCHDB_URL=http://localhost:5984 COUCHDB_URL=http://localhost:5984
COUCHDB_DB_NAME=adopt-a-street COUCHDB_DB_NAME=adopt-a-street
COUCHDB_USER=admin
COUCHDB_PASSWORD=admin
# JWT Authentication # JWT Authentication
JWT_SECRET=your_jwt_secret_key_here_change_in_production JWT_SECRET=your_jwt_secret_key_here_change_in_production