-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdotenv-sample
More file actions
54 lines (42 loc) · 1.7 KB
/
dotenv-sample
File metadata and controls
54 lines (42 loc) · 1.7 KB
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
45
46
47
48
49
50
51
52
53
54
# 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
# The dev OAuth application credentials are stored in Bitwarden
SOCIAL_AUTH_GITHUB_KEY=dummy
SOCIAL_AUTH_GITHUB_SECRET=dummy
ASSETS_DEV_MODE=False
# URL for rap api
RAP_API_BASE_URL=http://localhost:3000/controller/v1/
RAP_API_TOKEN=rap_token
# PRODUCTION ONLY
# You only need to set the values below in Production by default.
# Token for frontend Sentry error tracking DSN
VITE_SENTRY_DSN=
# Opentelemetry
# Set to True to log opentelemetry traces to the console in local env
# Warning can be verbose:
OTEL_EXPORTER_CONSOLE=False
# 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.
# From Bitwarden under this name. Post to the BennettTest Slack workspace.
# SLACK_BOT_TOKEN=
# Channel names. Note these all have prod defaults in settings.py.
# For testing purposes on BennettTest, post to the `testing` channel.
# 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=
# DEFAULT_MAX_GITHUB_RETRIES=