This repository contains a simple Flask application to help beginners understand the basics of web development with Flask, a lightweight Python web framework. 🌐
- 🧱 Minimal Flask setup
- 🛣️ Route definitions
- 🖼️ HTML template rendering
- 🛠️ Instructions for running locally
- 🐍 Python 3.x installed
- 📦
pippackage manager
- Clone the repository:
git clone https://github.com/mithildabhi/Flask-Basic-Tutorial.git
cd Flask_Basic_Tutorial
- Install Flask:
pip install flask
- Start the Flask server:
python app.py
- Open your browser and visit:
http://localhost:5000
Flask_Basic_Tutorial/
│
├── app.py
├── templates/
│ └── index.html
└── README.md
app.py– Main Flask application filetemplates/– Folder for HTML templates
This project is licensed under the MIT License.