Skip to content

Commit

Permalink
Update CONTRIBUTING_UIPATH.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivml authored Nov 25, 2024
1 parent 0340e34 commit deb353a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion CONTRIBUTING_UIPATH.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,17 @@ You will need Docker installed to run these containers.
First navigate to `danswer/deployment/docker_compose`, then start up Postgres/Vespa/Redis with:
```bash
docker compose -f docker-compose.dev.yml -p danswer-stack up -d index relational_db cache
docker compose -f docker-compose.dev.yml -p danswer-stack up -d relational_db cache
```
(index refers to Vespa, relational_db refers to Postgres, and cache refers to Redis)
```bash
* If you want to start clean, cleanup the vespa_var_storage and vespa_log_storage folders
export VESPA_VAR_STORAGE=/Users/rajivchodisetti/Documents/repos/darwin-latest-31stAug/vespa_data/var
export VESPA_LOG_STORAGE=/Users/rajivchodisetti/Documents/repos/darwin-latest-31stAug/vespa_data/logs
docker run --detach --name vespa --hostname vespa-container --volume $VESPA_VAR_STORAGE:/opt/vespa/var --volume $VESPA_LOG_STORAGE:/opt/vespa/logs --publish 8081:8081 --publish 19071:19071 vespaengine/vespa:8.277.17
```
#### Running Danswer locally
To start the frontend, navigate to `danswer/web` and run:
Expand Down

0 comments on commit deb353a

Please sign in to comment.