generated from opensafely-core/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env
18 lines (16 loc) · 782 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This file defines environment variables we want to be set in development
# environments. The Just command runner and VSCode's Python extension (but not
# the terminal) should pick these up automatically, see:
# https://github.com/casey/just#dotenv-load
# https://code.visualstudio.com/docs/python/environments#_environment-variables
#
# You can load these manually in bash using something like:
#
# set -o allexport; source .env; set +o allexport
#
# Disable hash randomisation. The kinds of DoS attacks hash seed randomisation
# is designed to protect against don't apply to ehrQL, and having consistent
# output makes debugging much easier
PYTHONHASHSEED=0
# Enable event level queries for testing purposes, but not yet in production
EHRQL_ENABLE_EVENT_LEVEL_QUERIES=True