From e55ffdb5b7e0684e9244b237324cb3e0184bbd85 Mon Sep 17 00:00:00 2001 From: tboyila <38067120+tboyila@users.noreply.github.com> Date: Sun, 19 Apr 2026 18:27:01 +0530 Subject: [PATCH] docs(readme): add explicit install step for quick start --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 64f56cac..6ebef300 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,14 @@ community that make adding new functionality easy. ## A Simple Example +Install Flask first: + +```bash +pip install flask +``` + +Then create `app.py`: + ```python # save this as app.py from flask import Flask @@ -30,6 +38,8 @@ def hello(): return "Hello, World!" ``` +Run the development server: + ``` $ flask run * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)