Skip to content

Commit c4637e3

Browse files
author
Li Yin
committed
Fixing typo
1 parent 057abc7 commit c4637e3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

guides/Heroku Tutorial.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ In this tutorial, we will introduce a popular cloud application platform called
66

77
Heroku is a cloud platform for deploying and running modern apps. A more detailed Introduction can be found [here](https://www.heroku.com/platform).
88

9-
Some of the key advantages of Heorku include:
9+
Some of the key advantages of Heroku include:
1010
- No server side knowledge is required, so it is easy to set up.
1111
- It can be free, but the free tier has some limitations, which we will discuss later when we introduce [`Dyno`]().
1212
- It enables SSL so the communication between your app and its users are encrypted.
1313

1414

1515
# Deploying our app onto Heroku
1616

17-
In this section, we will descrbe in length on how to deploy our app onto Heroku.
17+
In this section, we will describe in length on how to deploy our app onto Heroku.
1818

1919
## Preparing our code
2020

2121
Before we start deploying our app into Heroku, we need to make some preparation:
22-
- We will be using GitHub to store our application source code and make it available for Heorku.
22+
- We will be using GitHub to store our application source code and make it available for Heroku.
2323
- We need to add a few files to allow Heroku to understand and run our application.
2424

2525
We will explain exactly how to do it in this section.
@@ -46,7 +46,7 @@ python-3.5.2
4646

4747
#### requirement.txt
4848

49-
The next file we need to add is called `requirement.txt`, which specifies all the depencies of our project. So for our sample project, we will have something like this for the `requirement.txt` file:
49+
The next file we need to add is called `requirement.txt`, which specifies all the dependencies of our project. So for our sample project, we will have something like this for the `requirement.txt` file:
5050

5151
```
5252
Flask
@@ -61,7 +61,7 @@ Note that we are running a `Python` project, and `uWSGI` is used to run `Python`
6161

6262
#### uwsgi.ini \*
6363

64-
The `uwsgi.ini` file is only neccesary if you are running a `Python` app and choose to use `uWSGI`, which is highly recommended in this case. For our sample project, we have a `uwsgi.ini` file that looks like this:
64+
The `uwsgi.ini` file is only necessary if you are running a `Python` app and choose to use `uWSGI`, which is highly recommended in this case. For our sample project, we have a `uwsgi.ini` file that looks like this:
6565

6666
```
6767
[uwsgi]
@@ -94,7 +94,7 @@ The last file we need to add is called `Procfile`. It will tell Heroku how to ru
9494
web: uwsgi uwsgi.ini
9595
```
9696

97-
And this is all the preparation we need in our project for Heroku. Remeber to `push` these changes to your GitHub repository.
97+
And this is all the preparation we need in our project for Heroku. Remember to `push` these changes to your GitHub repository.
9898

9999
## Setting up Heroku for our app
100100

@@ -134,7 +134,7 @@ Next, select the `Deploy` tab in the app page:
134134

135135
<img src="assets/Heroku/select_tab.png" width =500>
136136

137-
Then click the `GitHub` option in `Deployment method` section and enter your credentials to connect Heroku with your GitHub. Next, select the repository and branch (select `master` if you haven't created any other branches) where your project is. Once it is done, you can directly deploy your app from GitHub onto Heroku by clicking the button `Deploy Branch`. Heroku will take care of the rest for you from now on. After a few seconds, Heroku shoul finish deploying for you:
137+
Then click the `GitHub` option in `Deployment method` section and enter your credentials to connect Heroku with your GitHub. Next, select the repository and branch (select `master` if you haven't created any other branches) where your project is. Once it is done, you can directly deploy your app from GitHub onto Heroku by clicking the button `Deploy Branch`. Heroku will take care of the rest for you from now on. After a few seconds, Heroku will finish deploying for you:
138138

139139
<img src="assets/Heroku/deploy.png">
140140

0 commit comments

Comments
 (0)