Skip to content

Latest commit

 

History

History
60 lines (43 loc) · 1.09 KB

File metadata and controls

60 lines (43 loc) · 1.09 KB

🚀 Flask Basic Tutorial

This repository contains a simple Flask application to help beginners understand the basics of web development with Flask, a lightweight Python web framework. 🌐

✨ Features

  • 🧱 Minimal Flask setup
  • 🛣️ Route definitions
  • 🖼️ HTML template rendering
  • 🛠️ Instructions for running locally

🏁 Getting Started

✅ Prerequisites

  • 🐍 Python 3.x installed
  • 📦 pip package manager

📥 Installation

  1. Clone the repository:
   git clone https://github.com/mithildabhi/Flask-Basic-Tutorial.git
   cd Flask_Basic_Tutorial
  1. Install Flask:
pip install flask

Running the Application

  1. Start the Flask server:
python app.py
  1. Open your browser and visit:
http://localhost:5000

Project Structure

Flask_Basic_Tutorial/
│
├── app.py
├── templates/
│ └── index.html
└── README.md
  • app.py – Main Flask application file
  • templates/ – Folder for HTML templates

License

This project is licensed under the MIT License.