DB_PASSWORD=mylocalpassword
Create a .env.python.local file in the same directory as your .env file. This file will store local environment variables that override or add to the ones in .env . .env.python.local
: Always add .env.python.local to your .gitignore file. You should never commit this file to your repository. DB_PASSWORD=mylocalpassword Create a
suffix is helpful in polyglot repositories (containing JS, Python, Go) to distinguish which environment variables belong to the Python runtime. 5. Integration with Virtual Environments files manage , virtual environments ( dependencies .env.python.local
STRIPE_API_KEY=pk_test_51ABCD... (test key) SENDGRID_API_KEY=SG.dev-key-789