Skip to content
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
10 changes: 0 additions & 10 deletions .learn/exercises/03-first-flask-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,6 @@

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).

For example, you can use Flask with a domain and expose the following URLs to the internet:

```txt
mywebsite.com/home
mywebsite.com/about-me
mywebsite.com/contact-me
```

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

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):

```python
Expand Down