From 578c24c9a161aece8a96ff4a0397129d1cbf40b4 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Sat, 1 Nov 2025 16:08:36 -0700 Subject: [PATCH] docs: add CouchDB auth credentials to env example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- backend/.env.example | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/.env.example b/backend/.env.example index 6349b8c..a922ad1 100644 --- a/backend/.env.example +++ b/backend/.env.example @@ -4,6 +4,8 @@ MONGO_URI=mongodb://localhost:27017/adopt-a-street # CouchDB Configuration (New primary database) COUCHDB_URL=http://localhost:5984 COUCHDB_DB_NAME=adopt-a-street +COUCHDB_USER=admin +COUCHDB_PASSWORD=admin # JWT Authentication JWT_SECRET=your_jwt_secret_key_here_change_in_production