Skip to content

Commit

Permalink
Update docs for local webapp development with basic auth (#18288)
Browse files Browse the repository at this point in the history
* add note to disable basic auth when developing the UI locally
  • Loading branch information
josephkmh authored Oct 21, 2022
1 parent e3ff75f commit 39c5512
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/contributing-to-airbyte/developing-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,13 @@ Note: If you are contributing a Python file without imports or function definiti
### Develop on `airbyte-webapp`

- Spin up Airbyte locally so the UI can make requests against the local API.
- Stop the `webapp`.

```bash
docker-compose stop webapp
BASIC_AUTH_USERNAME="" BASIC_AUTH_PASSWORD="" docker-compose up
```

Note: [basic auth](https://docs.airbyte.com/operator-guides/security#network-security) must be disabled by setting `BASIC_AUTH_USERNAME` and `BASIC_AUTH_PASSWORD` to empty values, otherwise requests from the development server will fail against the local API.

- Start up the react app.

```bash
Expand Down

0 comments on commit 39c5512

Please sign in to comment.