Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
Fixes the wrong "source .env"
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyseek committed Jun 2, 2015
1 parent 5f72562 commit 8f1ed61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -53,7 +53,7 @@ Uses with Flask

3. Enters your app with those environment variables::

$ (source .env && python myapp.py)
$ env $(cat .env | xargs) python myapp.py


Uses with Django
Expand Down Expand Up @@ -83,7 +83,7 @@ Uses with Django

3. Runs your Django app with environment variables::

$ (source .env && python manage.py runserver)
$ env $(cat .env | xargs) python manage.py runserver


Uses with Tornado
Expand Down Expand Up @@ -140,7 +140,7 @@ Uses with Tornado

3. Runs your Tornado app::

$ (source .env && python server.py)
$ env $(cat .env | xargs) python server.py


Works on Projects
Expand Down

0 comments on commit 8f1ed61

Please sign in to comment.