File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
[ ![ Build Status] [ build_status_badge ]] [ build_status_link ]
4
4
[ ![ PyPI version] [ pypi_badge ]] [ pypi_link ]
5
5
6
- Python -dotenv reads key-value pairs from a ` .env ` file and can set them as environment
6
+ python -dotenv reads key-value pairs from a ` .env ` file and can set them as environment
7
7
variables. It helps in the development of applications following the
8
8
[ 12-factor] ( https://12factor.net/ ) principles.
9
9
@@ -29,7 +29,7 @@ If your application takes its configuration from environment variables, like a 1
29
29
application, launching it in development is not very practical because you have to set
30
30
those environment variables yourself.
31
31
32
- To help you with that, you can add Python -dotenv to your application to make it load the
32
+ To help you with that, you can add python -dotenv to your application to make it load the
33
33
configuration from a ` .env ` file when it is present (e.g. in development) while remaining
34
34
configurable via the environment:
35
35
@@ -201,7 +201,7 @@ empty string.
201
201
202
202
### Variable expansion
203
203
204
- Python -dotenv can interpolate variables using POSIX variable expansion.
204
+ python -dotenv can interpolate variables using POSIX variable expansion.
205
205
206
206
With ` load_dotenv(override=True) ` or ` dotenv_values() ` , the value of a variable is the
207
207
first of the values defined in the following list:
You can’t perform that action at this time.
0 commit comments