diff --git a/.learn/exercises/03-first-flask-app/README.md b/.learn/exercises/03-first-flask-app/README.md index 1e7b75ac..e2cfd30a 100644 --- a/.learn/exercises/03-first-flask-app/README.md +++ b/.learn/exercises/03-first-flask-app/README.md @@ -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