Skip to content

Commit 688475b

Browse files
authored
Update djangoadmin_startproject.md
1 parent a394938 commit 688475b

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

djangoadmin_startproject.md

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -72,20 +72,9 @@ That strange URL "pure-crag-68" will be a different combo of random words and
7272
numbers for you. Click on that link or copy and paste it into your browser to
7373
see your application live for the world to see.
7474

75-
76-
## More Tips {-}
77-
78-
* To push to GitHub, you will use `git push` as before.
79-
80-
* Going forward, you will only need to repeat repeat step 10 & 11 (`git push
81-
heroku master`) to create a new git commit and release it to the world. The
82-
rest of the steps you won't have to repeat.
83-
84-
* If stuff still isn't working, use the `heroku logs` command to see error
85-
messages.
86-
87-
* Consider using the Heroku online interface to change the app name from the
88-
random nonsense name to be something more appropriate.
75+
While things will be mostly working now, it's using the default SQLite database
76+
which has many drawbacks and is not intended for "use in production" or use
77+
outside of development on your local computer. Check out the
8978

9079

9180
## Tip: Postgres on Heroku
@@ -134,6 +123,22 @@ heroku run python manage.py migrate
134123
```
135124

136125

126+
## Tip: Using Heroku
127+
128+
* To push to GitHub, you will use `git push` as before.
129+
130+
* Going forward, you will only need to repeat repeat step 10 & 11 (`git push
131+
heroku master`) to create a new git commit and release it to the world. The
132+
rest of the steps you won't have to repeat.
133+
134+
* If stuff still isn't working, use the `heroku logs` command to see error
135+
messages.
136+
137+
* Consider using the Heroku online interface to change the app name from the
138+
random nonsense name to be something more appropriate.
139+
140+
141+
137142
----------------------
138143

139144
# Setting up individual features

0 commit comments

Comments
 (0)