Skip to content

mkeithX/flask-tutorial-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.