Building a web application with Python.
To get started, follow these steps to run the app on your local machine.
git clone https://github.com/mkeithX/flask-tutorial-demo.git
cd flask-tutorial-demo
For Windows
py -m venv .venv
.venv\Scripts\activate
For Unix
python3 -m venv .venv
source venv/bin/activate
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.