- 
                Notifications
    You must be signed in to change notification settings 
- Fork 22
Open
Labels
Description
The readme on the main page is quite nice and helps in using environment variables. Is there a way to use variables that are defined via a python-dotenv file?
# don't use os but a dot env?
{% set conda_py = os.environ.get('CONDA_PY', '35') %}
name: web-ui-py{{ conda_py }}
includes:
  - {{ root }}/../core-business/environment.devenv.yml
The dotenv is just a file that looks like this:
# Development settings
CONDA_PY='35'