Skip to content

Commit ddee1fb

Browse files
feyclaude
andcommitted
docs: add Bugsink DSN setup instructions to README
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 84e3e99 commit ddee1fb

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,21 @@ SERVER_MESSAGE="Hexlet Awesome Server"
3232
SENTRY_DSN=<your bugsink dsn>
3333
```
3434

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+
3550
## Development
3651

3752
```bash

0 commit comments

Comments
 (0)