A brief, clear description of what your app does.
- Flask
- Flask-WTF
- SQLAlchemy
- Bootstrap
- SQLite
# Clone the repo
git clone https://github.com/your-username/flask_tutorial.git
cd flask_tutorial
# Create and activate virtual environment
python -m venv development
development\Scripts\activate # Windows CMD
# OR
.\development\Scripts\Activate.ps1 # PowerShell
# Install dependencies
pip install -r requirements.txt
# Run the app
python flask_app.py