Skip to content
This repository was archived by the owner on Jul 18, 2020. It is now read-only.
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
9 changes: 8 additions & 1 deletion getting_set_up.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ Typo + GitHub Setup Instructions
Deploying to Heroku Instructions
--------------------------------

Typo wasn’t built with Heroku in mind, but the changes needed to deploy to Heroku have already been made in our fork of the Typo repository. If you haven't done it previously you will need to run the following at the command line:
Typo wasn’t built with Heroku in mind, but the changes needed to deploy to Heroku have already been made in our fork of the Typo repository.

If you haven't done it previously you will need to run the following at the command line:

```
$ heroku login
Expand All @@ -42,6 +44,11 @@ Then from within your copy of the Typo repository, run:
$ heroku create
$ git push heroku master
$ heroku run rake db:migrate
```

At this point you should make sure your browser is configured to allow cookies for the ```[*.]herokuapp.com``` domain as otherwise you will get an error when you try to proceed, then:

```
$ heroku open # doesn't work on C9 --> on C9 right click on link that git push to heroku generates
```

Expand Down