git clone https://github.com/Codereverse12/webform.git
cd webformpython -m venv venvActivate it:
- Windows
venv\Scripts\activate 
- Mac/Linux
source venv/bin/activate
pip install -r requirements.txtThis project uses Flask-Migrate to handle database migrations.
💡 You do not need to run
flask db init— themigrations/folder is already included in this repository.
flask db upgradeRun the Flask development server:
flask runThe app will be available at:
http://127.0.0.1:5000