Update CONTRIBUTING.md

This commit is contained in:
Yuhong Sun 2024-09-11 19:17:23 -07:00 committed by GitHub
parent aee5fcd4e0
commit 2654df49fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -193,7 +193,7 @@ You can run the full Danswer application stack from pre-built images including a
Navigate to `danswer/deployment/docker_compose` and run:
```bash
docker compose up
docker compose -f docker-compose.dev.yml -p danswer-stack up -d
```
After Docker pulls and starts these containers, navigate to `http://localhost:3000` to use Danswer.
@ -201,7 +201,7 @@ After Docker pulls and starts these containers, navigate to `http://localhost:30
If you want to make changes to Danswer and run those changes in Docker, you can also build a local version of the Danswer container images that incorporates your changes like so:
```bash
docker compose up --build
docker compose -f docker-compose.dev.yml -p danswer-stack up -d --build
```
### Formatting and Linting