virtualenv venv
source venv/bin/activate
pip install -r api/requirements.txtSince there is mysql database is used, make sure server is running and configure in config/config.json
capstone database is used so please create if not exists
CREATE DATABASE IF NOT EXISTS `capstone`;cd api/
python app.pyOR Run using gunicorn
gunicorn -w 4 -b 0.0.0.0:8000 app:appIt asynchronously sends password reset links to the users.
python mail.py --start password-reset --sleep 5It asynchronously sends contact message to us.
python mail.py --start contact-message --sleep 5cd web/
python app.py
