* update .env.template
This commit is contained in:
Łukasz Zalewski 2021-04-05 21:48:47 +02:00 коммит произвёл GitHub
Родитель 2996a1d1d0
Коммит a5002bf256
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -4,5 +4,5 @@
# the variables declared in .env are loaded automatically in run.py
export MY_VAR="/home/user/my_system_path"
export MY_KEY="asdgjhawi8y23ihsghsueity23ihwd"
MY_VAR="/home/user/my/system/path"
MY_KEY="asdgjhawi8y23ihsghsueity23ihwd"

Просмотреть файл

@ -712,8 +712,8 @@ System specific variables (e.g. absolute paths to datasets) should not be under
Template contains `.env.template` file, which serves as an example. Create a new file called `.env` (this name is excluded from version control in .gitignore).
You should use it for storing environment variables like this:
```bash
export MY_VAR=/home/user/my_system_path
```yaml
MY_VAR=/home/user/my_system_path
```
All variables from `.env` are loaded in `run.py` automatically.