This commit is contained in:
Erik Vroon
2025-02-04 17:34:37 +01:00
committed by GitHub
parent 116ba92ca2
commit 76d69006db
2 changed files with 17 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
---
sidebar_position: 2
sidebar_position: 1
---
# Configuration

View File

@@ -0,0 +1,16 @@
---
sidebar_position: 2
---
# FAQ
## I ran Bracket with the default `docker-compose.yml` but I can't connect to the backend?
This is likely because you are trying to access Bracket on a different address than
`http://localhost:3000` in the browser. In that case, two things need to be changed:
- Change `NEXT_PUBLIC_API_BASE_URL` to the address of the backend, e.g `https://api.example.org`.
- You will also need to update `CORS_ORIGINS` to the address of the frontend, e.g.
`https://app.example.org`.
Please consult [configuration docs](configuration.md) for more information.