Skip to content

Commit f70b35c

Browse files
feyclaude
andcommitted
fix: hardcode bugsink local dev credentials in docker-compose.override.yml
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f38748f commit f70b35c

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

.env.example

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
11
SENTRY_DSN=
22
SERVER_MESSAGE=
3-
4-
# Bugsink (локальный сервис для разработки)
5-
BUGSINK_SECRET_KEY=localdev
6-
BUGSINK_SUPERUSER_EMAIL=admin@example.com
7-
BUGSINK_SUPERUSER_PASSWORD=admin

docker-compose.override.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
ports:
1919
- 8000:8000
2020
environment:
21-
- SECRET_KEY=${BUGSINK_SECRET_KEY}
21+
- SECRET_KEY=localdev
2222
- ALLOWED_HOSTS=localhost,bugsink
23-
- SUPERUSER_EMAIL=${BUGSINK_SUPERUSER_EMAIL}
24-
- SUPERUSER_PASSWORD=${BUGSINK_SUPERUSER_PASSWORD}
23+
- SUPERUSER_EMAIL=admin@example.com
24+
- SUPERUSER_PASSWORD=admin

0 commit comments

Comments
 (0)