Skip to content

Commit bba5a38

Browse files
author
Saurabh Kumar
committed
update docs
1 parent 563a937 commit bba5a38

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ doesn't. Let's fix that.
1313

1414
- [Installation](#installation)
1515
- [Usage](#usage)
16-
- [Command-line interface](#command-line-interface)
17-
- [Loading settings from a `.env` file into your django environment](#loading-settings-from-a-.env-file-into-your-django-environment)
18-
- [Setting remote config](#setting-remote-config)
16+
- [Command-line interface](#command-line-interface)
17+
- [Loading settings from a `.env` file into your django environment](#loading-settings-from-a-.env-file-into-your-django-environment)
18+
- [Setting remote config](#setting-remote-config)
1919
- [Contributing](#contributing)
2020

2121
<!-- /MarkdownTOC -->
@@ -75,7 +75,8 @@ Add a config task to your local fabfile, `dotenv_path` is the location of the ab
7575
```
7676
from fabric.api import task, local, env
7777
78-
env.dotenv_path = '/etc/project_name/.env'
78+
# absolute path to the location of .env on remote server
79+
env.dotenv_path = '/home/me/webapps/myapp/myapp/.env'
7980
8081
@task
8182
def config(action=None,key=None,value=None):

0 commit comments

Comments
 (0)