Sentry-specific Changes
January 23, 2023 ยท View on GitHub
Running Locally with Docker-Compose
For all docker-compose operations please use our compose.sh wrapper.
To run the demo locally, configure Sentry DSN values for every service in the
demo in .env.sentry file, and then run it as follows:
# Copy the example file
cp .env.sentry.example .env.sentry
# Update Sentry DSN values in `.env.sentry`
# ...
# Start docker-compose
./compose.sh up
You can add an optional docker-compose.override.yml file if you want to override
various values for local development or testing.
Compose configuration will be read (and overridden) in the following order:
docker-compose.ymldocker-compose.sentry.ymldocker-compose.override.yml
So the values in docker-compose.override.yml will "win" over the corresponding
values in the other files.
Deploying the Demo
When you are happy with the local changes, you can deploy your changes to our live demo instances.
See ./deploy/README.md for more details.