added shell command for windows (#194)

This commit is contained in:
lokeshwar lakhineni 2023-07-29 06:32:27 +05:30 committed by GitHub
parent 55adde5e27
commit 62afbcb178
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,6 +119,11 @@ To start the frontend, navigate to `danswer/web` and run:
```bash
DISABLE_AUTH=true npm run dev
```
_for Windows, run:_
```bash
$env:DISABLE_AUTH = "true"; npm run dev
```
The first time running Danswer, you will need to run the migrations. Navigate to `danswer/backend` and run:
```bash