You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `Setting config on remote servers <#setting-config-on-remote-servers>`__
25
+
- `Related Projects <#releated-projects>`__
26
26
- `Contributing <#contributing>`__
27
27
- `Changelog <#changelog>`__
28
28
@@ -138,17 +138,18 @@ update your settings on remote server, handy isn't it!
138
138
iPython Support
139
139
---------------
140
140
141
-
You can use dotenv with iPython. You can either let the dotenv search for .env with `%dotenv` or provide the path to .env file explicitly, see below for usuages.
141
+
You can use dotenv with iPython. You can either let the dotenv search for .env with `%dotenv` or provide the path to .env file explicitly, see below for usages.
142
142
143
-
```
144
-
%load_ext dotenv
143
+
::
144
+
145
+
%load_ext dotenv
146
+
147
+
# Use find_dotenv to locate the file
148
+
%dotenv
145
149
146
-
# Use find_dotenv to locate the file
147
-
%dotenv
150
+
# Specify a particular file
151
+
%dotenv relative/or/absolute/path/to/.env
148
152
149
-
# Specify a particular file
150
-
%dotenv relative/or/absolute/path/to/.env
151
-
```
152
153
153
154
Setting config on remote servers
154
155
--------------------------------
@@ -245,23 +246,23 @@ Changelog
245
246
=========
246
247
247
248
dev
248
-
----------
249
+
----
249
250
- Fix `dotenv list` command (`@ticosax`_)
250
251
- Add iPython Suport (`@tillahoffmann`_)
251
252
252
253
0.6.0
253
-
----------
254
+
-----
254
255
- Drop support for Python 2.6
255
256
- Handle escaped charaters and newlines in quoted values. (Thanks `@iameugenejo`_)
256
257
- Remove any spaces around unquoted key/value. (Thanks `@paulochf`_)
0 commit comments