forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality
Milestone
Description
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.
koliyo
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionality