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