We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm getting a 404 when I try to load http://127.0.0.1:8000/sentry/1.js, as in:
http://127.0.0.1:8000/sentry/1.js
<script src="http://127.0.0.1:8000/sentry/1.js"></script>
This is my docker-compose.yml
docker-compose.yml
services: buggregator: image: ghcr.io/buggregator/server:latest depends_on: buggregator-database: condition: service_healthy ports: - 127.0.0.1:8000:8000 environment: PERSISTENCE_DRIVER: database DB_DRIVER: pgsql DB_DATABASE: buggregator DB_HOST: buggregator-database DB_PORT: 5432 DB_USERNAME: buggregator DB_PASSWORD: buggregator SENTRY_JS_SDK_URL: https://browser.sentry-cdn.com/7.69.0/bundle.tracing.replay.min.js SENTRY_JS_DSN_HOST: http://[email protected]:8000 buggregator-database: image: postgres:latest healthcheck: test: [ "CMD-SHELL", "pg_isready --username=buggregator --dbname=buggregator" ] interval: 3s timeout: 3s retries: 1 environment: POSTGRES_DB: buggregator POSTGRES_USER: buggregator POSTGRES_PASSWORD: buggregator
The text was updated successfully, but these errors were encountered:
@soderlind check this issue buggregator/docs#36
Sorry, something went wrong.
#187
Fixed issue with numeric project name for Sentry JavascriptAction
d26018b
fixes #188
@soderlind Thx for the bug!
There is undefined variable $id in JavascriptAction.php file
Thx guys!
butschster
Successfully merging a pull request may close this issue.
I'm getting a 404 when I try to load
http://127.0.0.1:8000/sentry/1.js
, as in:This is my
docker-compose.yml
The text was updated successfully, but these errors were encountered: