-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
34 lines (30 loc) · 1.23 KB
/
.env
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
# Environment variables go here, and can be read in by Python using the `python-dotenv`
# package, and `os.getenv`:
#
# ------------------------------------------------------------------------------------
# from dotenv import load_dotenv
# import os
#
# # Load the environment variables from the `.env` file, overriding any system
# # environment variables
# load_dotenv(override=True)
#
# # Load secrets from the `.secrets` file, overriding any system environment variables
# load_dotenv(".secrets", override=True)
#
# # Example variable
# EXAMPLE_VARIABLE = os.getenv("EXAMPLE_VARIABLE")
# ------------------------------------------------------------------------------------
#
# For folder/file path environment variables, use relative paths.
#
# DO NOT STORE SECRETS HERE - this file is version-controlled! You should store secrets
# in the untracked `.secrets` file.
# Add environment variables for the `docs` directory
DIR_DOCS=./docs
# Add environment variable for package directory
DIR_SRC = ./src
# Add environment variables for the `src` directories
DIR_SRC_COOKIECUTTER.REPO_NAME.LOWER().REPLACE('','_').REPLACE('-','_') =./src/consultation_nlp_2023
# Add environment variables for the `tests` directory
DIR_TESTS=./tests