Currently the .env file is not a real dot-env-file because it is a simple list of name=value pairs. However "real" .env supports string references: see https://marketplace.visualstudio.com/items?itemName=mikestead.dotenv
Why is this important?
I set up my PYTHONPATH in the .env file to mirror runtime set env variables so I can use the integrated debugger. This becomes quite lengthy so I tried:
REPO="/home/user/git/foobar"
PYTHONPATH="${REPO}/foo:${REPO}/bar"
# Or
PYTHONPATH="${REPO}/foo"
PYTHONPATH="${PYTHONPATH}:${REPO}/bar"
Would be great, if this was allowed.
Currently the
.envfile is not a real dot-env-file because it is a simple list ofname=valuepairs. However "real" .env supports string references: see https://marketplace.visualstudio.com/items?itemName=mikestead.dotenvWhy is this important?
I set up my
PYTHONPATHin the .env file to mirror runtime set env variables so I can use the integrated debugger. This becomes quite lengthy so I tried:Would be great, if this was allowed.