Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Fixed typos #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions all/Heroku_Django_Deployment_Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ A installation guide for getting Django setup on Heroku

### Setup Static Files:

We suggest using [Amazon Web Service S3](http://www.kirr.co/exuykp/) for static files in general. However, if you want to use Heroku fr static files, do the following:
We suggest using [Amazon Web Service S3](http://www.kirr.co/exuykp/) for static files in general. However, if you want to use Heroku for static files, do the following:

1. Install whitenoise and add to `requirements.txt`:
```
Expand Down Expand Up @@ -216,7 +216,7 @@ We suggest using [Amazon Web Service S3](http://www.kirr.co/exuykp/) for static

3. Using [Amazon Web Service S3](http://www.kirr.co/exuykp/) for static files?

Ensure you do disable collecstatic from running everytime you push to Heroku (which causes errors). Re-enable after you setup S3 in your Django Project.
Ensure you do disable collectstatic from running everytime you push to Heroku (which causes errors). Re-enable after you setup S3 in your Django Project.

```
#disable collectstatic
Expand Down Expand Up @@ -251,7 +251,7 @@ DEFAULT_FROM_EMAIL = "Justin <[email protected]>"
ADMINS = [('Justin', EMAIL_HOST_USER)]
MANAGERS = ADMINS
```
If email is faiiling, then go to the folloing locations to unlock your gmail address:
If email is failing, then go to the following locations to unlock your gmail address:
- [https://www.google.com/settings/security/lesssecureapps](https://www.google.com/settings/security/lesssecureapps)

- [https://accounts.google.com/DisplayUnlockCaptcha](https://accounts.google.com/DisplayUnlockCaptcha)
Expand Down