Is there a way to refer to the current directory in a .env
file?
Trying to point the location of a config file from userprofile, to the current path. For example,
CONFIG_FILE=${USERPROFILE}\.configs\config.cfg
I would like to set it to,
CONFIG_FILE=${CURRENTPATH}\.configs\config.cfg
pwd
– Cycloidcurrentpath
,currentdir
,currentdirectory
, even.
(dot) – Summerlypwd
didn't work – Summerlypipenv shell|run
, if I can't get that to work I will have to create a load script in my root directory. – Summerlypipenv shell
is sets environment variables from a.env
file, I wanted to point a config from from one location to another while I have an activepipenv shell
– Summerly