Skip to content

Commit 39eae7a

Browse files
committed
doc: fix typos
1 parent 5dbdb4c commit 39eae7a

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"cSpell.words": ["ahmnouira", "venv", "virtualenv"]
3+
}

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This app is designed to run in different ways:
2121
2. `git clone` the project then `cd` into the directory
2222
3. run `virtualenv -p /usr/bin/python3 venv`or `python -m venv venv` to create a virtual environment
2323
4. activate it using `source venv/bin/activate`
24-
5. `pip install -r requirements.txt` to install the app libaries and it dependencies
24+
5. `pip install -r requirements.txt` to install the app libraries and it dependencies
2525

2626
### running the app
2727

@@ -33,7 +33,7 @@ Access the running app in a browser at the URL written to the console (most like
3333
1. install [Docker](https://www.docker.com/)
3434
2. `run docker --version` to check if docker is installed
3535
3. run `docker build -t flask-hello-world:latest .` to build the docker image
36-
4. `docker images` list the local avaible images
36+
4. `docker images` list the local available images
3737
5. run `docker run --name flask_hello_world -d -p 8000:5000 --rm flask-hello-world:latest` to start the container
3838
6. Navigate to <http://localhost:8000> in a browser to see the results. If you want to share it with your local network devices navigate to http://[your-ip-address]:8000
3939

@@ -44,7 +44,7 @@ Docker Hub is a free service to publicly store available images.
4444
1. you need to install only [Docker](https://www.docker.com/)
4545
2. just run `docker run -d -p 8080:5000 --name flask ahmnouira/flask-hello-world`
4646

47-
![my_doker_hub](/img/docker_hub.png)
47+
![my_docker_hub](/img/docker_hub.png)
4848

4949
## 4. As an application hosted by IBM Cloud
5050

@@ -55,12 +55,12 @@ Docker Hub is a free service to publicly store available images.
5555

5656
1. clone the repository by running `git clone https://github.com/AhmNouira/flask-hello-world`
5757
2. `cd flask-hello-world`
58-
2. run `bx login` to login to your IBM cloud account and enter your email and password
59-
3. `bx target --cf` to target the Cloud Foundary
58+
3. run `bx login` to login to your IBM cloud account and enter your email and password
59+
4. `bx target --cf` to target the Cloud Foundry
6060
To check the default organization and space to which you have access, go to <https://cloud.ibm.com/account/cloud-foundry>.
61-
4. `bx cf push` to push the application to IBM Cloud
62-
5. if you found any error run `bx cf logs flask-hello-world --recent` to see the troubleshoot
63-
6. check whether your app is running `bx cf app flask-hello-world`
64-
7. to explore how your app directories are structured `bx cf ssh flask-hello-world`
61+
5. `bx cf push` to push the application to IBM Cloud
62+
6. if you found any error run `bx cf logs flask-hello-world --recent` to see the troubleshoot
63+
7. check whether your app is running `bx cf app flask-hello-world`
64+
8. to explore how your app directories are structured `bx cf ssh flask-hello-world`
6565

6666
![ibm_cloud](/img/ibm_cloud.png)

0 commit comments

Comments
 (0)