Skip to content

Commit b2cc70a

Browse files
authored
Update README.md
1 parent ee8f396 commit b2cc70a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## `03` First Flask App
1+
# `03` First Flask App
22

33
Flask is an app that behaves like a web server: it exposes (publishes) a group of URLs to the internet (like an API or website).
44

5-
For example, you can use Flask with a domain and expose the following URLs to the internet:
5+
For example, you can use Flask with a domain and expose the following URLs to the Internet:
66

77
```txt
88
mywebsite.com/home
@@ -12,16 +12,17 @@ mywebsite.com/contact-me
1212

1313
Those three URLs exposed by Flask will become your personal website.
1414

15-
To create our first server, we need to add the following two lines to our python file that we are going to create (These two lines have to be in every flask project you create to work correctly):
15+
To create our first server, we need to add the following two lines to our Python file that we are going to create (These two lines have to be in every flask project you create to work correctly):
1616

1717
```python
1818
from flask import Flask
1919
app = Flask(__name__)
2020
```
21+
2122
## 📝 Instructions:
2223

23-
1. On the root of your project create a `src` folder.
24+
1. On the root of your project, create a `src` folder.
2425

2526
2. Inside of it, create a file named `app.py`.
2627

27-
3. As instructed above, add the code to create a new flask app.
28+
3. As instructed above, add the code to create a new Flask app.

0 commit comments

Comments
 (0)