-
Notifications
You must be signed in to change notification settings - Fork 11
/
dotenv-sample
44 lines (33 loc) · 1.36 KB
/
dotenv-sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Note: this assumes docker dev db. You will need to change it if you want to
# point another postgres
DATABASE_URL=postgres://user:pass@localhost:6543/jobserver
# Turn on debug
DEBUG=1
# A long random string
SECRET_KEY=12345
# A GitHub API token, we use a PAT for this
JOBSERVER_GITHUB_TOKEN=dummy
# A GitHub API token, we use a PAT from our writeable user for this
INTERACTIVE_GITHUB_TOKEN=dummy
# The dev OAuth application credentials are stored in Bitwarden
SOCIAL_AUTH_GITHUB_KEY=dummy
SOCIAL_AUTH_GITHUB_SECRET=dummy
ASSETS_DEV_MODE=False
# PRODUCTION ONLY
# You only need to set the values below in Production by default.
# Token for frontend Sentry error tracking DSN
VITE_SENTRY_DSN=
# To send to honecomb in dev, create a token for the development and set it here.
# OTEL_EXPORTER_OTLP_HEADERS="x-honeycomb-team=TOKEN34"
# For issues and slack notifications in dev
# If DEBUG is on, job-server will print messages to the console and won't
# attempt to create issues or post to slack. These variables are only required
# for testing real slack notifications and GitHub issues with DEBUG off.
# Note these all have prod defaults in settings.py
# RELEASES_SLACK_CHANNEL=
# REGISTRATIONS_SLACK_CHANNEL=
# APPLICATIONS_SLACK_CHANNEL=
# COPILOT_SUPPORT_SLACK_CHANNEL=
# DEFAULT_OUTPUT_CHECKING_SLACK_CHANNEL=
# DEFAULT_OUTPUT_CHECKING_GITHUB_ORG
# DEFAULT_OUTPUT_CHECKING_REPO=