A Boilerplate code for small data-driven Flask applications
git clone https://github.com/the-akira/flask-init.git
Create a Virtual Environment
python -m venv myvenv
Activate the Virtual Environment
source myvenv/bin/activate
Install Requirements
pip install -r requirements.txt
Run the Application
python run.py
- Navigate to
http://127.0.0.1:5000/
to see the Homepage - Navigate to
http://127.0.0.1:5000/admin
to see the Administrative Interface