Skip to content

Commit 3886364

Browse files
committed
Fix a typo
1 parent e332593 commit 3886364

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

django-hosting-heroku/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Hosting a Django Project on Herok
1+
# Hosting a Django Project on Heroku
22

33
This is a companion project to a Real Python tutorial about [Hosting a Django Project on Heroku](https://realpython.com/django-hosting-on-heroku/). It's a bare-bones Django project without any views.
44

@@ -35,9 +35,10 @@ Optionally, for local development:
3535

3636
```shell
3737
$ python3 -m venv ./venv --prompt portfolio
38-
$ source .venv/bin/activate
38+
$ source venv/bin/activate
3939
(portfolio) $ python -m pip install -r requirements.txt
40-
(portfolio) $ heroku config -s > .env
40+
(portfolio) $ python -m pip install --upgrade pip
41+
(portfolio) $ heroku config --shell > .env
4142
(portfolio) $ heroku local
4243
```
4344

0 commit comments

Comments
 (0)