-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotenv-sample
38 lines (30 loc) · 1.38 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
# Default environment variables for local development
DJANGO_DEBUG=True
DJANGO_SECRET_KEY="INSECURE-if-you-use-this-in-prod-you-will-have-a-bad-day"
DJANGO_ALLOWED_HOSTS="*"
AIRLOCK_WORK_DIR=workdir/
AIRLOCK_WORKSPACE_DIR=workspaces/
AIRLOCK_REQUEST_DIR=releases/
# This should be set in development but not in production (and will be ignored
# in AIRLOCK_API_TOKEN is set)
AIRLOCK_DEV_USERS_FILE="dev_users.json"
# Note: in development, these settings will be automatically updated by
# `just job-server/{run,stop}
# In production you can find this token for an existing backend in the
# Job Server staff area at https://jobs.opensafely.org/staff/backends/ ,
# and you can use the default value for the endpoint.
AIRLOCK_API_TOKEN=
AIRLOCK_API_ENDPOINT="https://localhost:9000/api/v2"
# The output-checking org and repo to use for notifications
# This is the repo that issues will be created/updated in
# ( currently via a job-server endpoint)
AIRLOCK_OUTPUT_CHECKING_ORG="ebmdatalab"
AIRLOCK_OUTPUT_CHECKING_REPO="output-checking-test"
# 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"
# Uncomment to run the tests that take docs screenshots
# RUN_SCREENSHOT_TESTS=True