From 27a6b0566226ca2526fa0453d3882800431e0121 Mon Sep 17 00:00:00 2001 From: Ehiber Graterol <56272634+ehiber@users.noreply.github.com> Date: Wed, 15 Apr 2026 14:45:09 -0400 Subject: [PATCH] Update README.md --- .learn/exercises/03-first-flask-app/README.md | 10 ---------- 1 file changed, 10 deletions(-) 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