-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.sample
More file actions
36 lines (29 loc) · 1.41 KB
/
.env.sample
File metadata and controls
36 lines (29 loc) · 1.41 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
######################
### Required variables
######################
# The path were the files will be exported. It needs to point to the 'public/data/'
# of your local clone of the https://github.com/MTES-MCT/ecobalyse/ repository.
# A local copy of the files will alse be kept in the `public/data/` folder.
EB_OUTPUT_DIR=/path/to/ecobalyse/public/data/
# The following variables are needed to connect to the S3 compatible object
# storage service hosting the files.
EB_S3_ENDPOINT= # The endpoint of the storage service.
EB_S3_REGION= # The region where the files are stored.
EB_S3_ACCESS_KEY_ID= # The access key; ideally with readonly rights only.
EB_S3_SECRET_ACCESS_KEY= # The secret key.
EB_S3_BUCKET= # The bucket where the files are stored.
EB_S3_DB_PREFIX= # The folder where the files are stored.
######################
### Optional variables
######################
# The path where the input LCA files will be downloaded to.
EB_DB_CACHE_DIR=${HOME}/.cache/ecobalyse/db-cache
# The minimum level of the logs that will be displayed.
# Can be any of the usual log levels (DEBUG, INFO, WARNING, ERROR, …)
EB_LOG_LEVEL=INFO
# Should we generate graphs with differences between SimaPro and Brightway in
# the `graphs/` folder when running the export? Note that this requires a instance
# of SimaPro running
EB_PLOT_EXPORT=false
# Limit MKL threads to 1 so we can do multiprocessing at the upper level
MKL_THREADING_LAYER=SEQUENTIAL