We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84e3e99 commit ddee1fbCopy full SHA for ddee1fb
1 file changed
README.md
@@ -32,6 +32,21 @@ SERVER_MESSAGE="Hexlet Awesome Server"
32
SENTRY_DSN=<your bugsink dsn>
33
```
34
35
+## Getting Bugsink DSN
36
+
37
+Bugsink runs as a local service via Docker Compose. To get the DSN:
38
39
+1. Start the services: `make compose`
40
+2. Open http://localhost:8000 and log in (`admin@example.com` / `admin`)
41
+3. Create a new project
42
+4. Copy the DSN from the project settings — it looks like:
43
+ `http://<key>@bugsink:8000/<project_id>`
44
+5. Add it to your `.env` file:
45
+ ```env
46
+ SENTRY_DSN=http://<key>@bugsink:8000/<project_id>
47
+ ```
48
+6. Restart the app: `docker compose restart app`
49
50
## Development
51
52
```bash
0 commit comments