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.gitcd flask-tutorial-demoFor Windows
py -m venv .venv.venv\Scripts\activateFor Unix
python3 -m venv .venvsource venv/bin/activateStart by making a copy of .env.example in your app directory.
cp .env.example .envThen, initialize the database and run the application.
flask init-dbflask runCongratulations!
If you find this repo helpful, 🙏 show your support by giving it a ⭐.
Explore more at this website.