Author : Salmanul Faris
About Application
This is App is developed in flask, vue and Bootstrap 5 as CSS framework, and SQLite as Database.
-
Create Virtual Environment
python -m virtualenv myenv -
Activate Virtual Environment
source /myenv/bin/activate -
Install all required packages for app
pip install -r requirements.txt -
Change entry file of flask
export FLASK_APP=main -
Start Server
flask run --debug -
Migrate Data
Go to
python3 setup_db.pyto migrate db and seed basic data
redis-server
celery -A main:celery_app worker --loglevel INFO
celery -A main:celery_app beat --loglevel INFO




