Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 945 Bytes

README.md

File metadata and controls

64 lines (42 loc) · 945 Bytes

Flask Tutorial - Demo

Building a web application with Python.

Installation

To get started, follow these steps to run the app on your local machine.

Cloning the Repository

git clone https://github.com/mkeithX/flask-tutorial-demo.git
cd flask-tutorial-demo

Setting Up the Virtual Environment

For Windows

py -m venv .venv
.venv\Scripts\activate

For Unix

python3 -m venv .venv
source venv/bin/activate

Running the Application

Start by making a copy of .env.example in your app directory.

cp .env.example .env

Then, initialize the database and run the application.

flask init-db
flask run

Congratulations!


If you find this repo helpful, 🙏 show your support by giving it a ⭐.

Explore more at this website.