Rehashing the code #1

Merged
elia merged 4 commits from rehash into master 2024-11-30 11:10:38 +00:00
Showing only changes of commit c7c546f371 - Show all commits

View file

@ -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).