An application to collect data of historical interest, with locations and descriptions
https://cygwin.com/install.html
To override the API backend host at runtime:
docker run -e NEXT_PUBLIC_API_HOST=https://api.example.com -p 3000:3000 avarc-frontend
This will ensure your frontend points to the correct backend API on launch.
To override the API backend host at runtime:
docker run -e APP.CORS.ALLOWED-ORIGINS="http://localhost:3000,https://*.example.com" -p 8080:8080 avarc-backend
This will ensure your backend will accept requests from the correct frontend on launch.
Name | Description | Example |
---|---|---|
NEXT_PUBLIC_API_HOST |
Host URL for backend API communication | http://localhost:8080 |
APP.CORS.ALLOWED-ORIGINS |
Sources the backend accepts requests from | http://localhost:3000 |
We will assemble some step-by-step guides for different IDEs on our developer documentation website:
Happy coding!