When I run `./pants run ::manage -- runserver` for...
# general
c
When I run
./pants run ::manage -- runserver
for django. Environment variable from .env or .envrc are not loaded. Is there any way to load env?
e
We're trialing a new way to run Pants with install instructions here: https://www.pantsbuild.org/v2.15/docs/installation If you want to try that install out and then run
pants run ...
instead of
./pants run ...
you should find this works.
That
pants
binary loads
.env
if present: https://github.com/pantsbuild/scie-pants#features
c
I will try! Thanks John!