From c7c546f371b10934e8d8e1232726625187c84c82 Mon Sep 17 00:00:00 2001 From: Elia el Lazkani Date: Sat, 30 Nov 2024 11:07:24 +0100 Subject: [PATCH] chore(): Updates README CouchDB changed since the last time of development, updating the README.md to match the changes. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4eeae74..0908e52 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Shortenit is a tool to shorten urls. To run `shortenit`, first we need to have a running database. Shortenit uses [CouchDB](https://couchdb.apache.org/) as a database. CouchDB can run as a docker container. ```text -$ docker run -p 5984:5984 -d couchdb +$ docker run -p 5984:5984 -e COUCHDB_USER=root -e COUCHDB_PASSWORD=root -d couchdb ``` At this point, visit the local instance link [http://localhost:5984](http://localhost:5984/) and create the user credentials configured in [config/config.yaml](config/config.yaml).