- Flask==1.0.2
- Flask-SQLAlchemy==2.3.2
- Flask-WTF==0.14.2
- redis==2.10.6
- requests==2.19.1
- rq==0.12.0
- SQLAlchemy==1.2.12
Following steps assume that you have python3 installed and created a virtual enviroment on your computer.
pip install -r requirements.txt
Activate your virtual environment and go to project directory using the console and run the following command.
python worker.py
Note: You should keep this worker running in background.
Open a new teminal window and activate your virtual enviroment, then create database using
python create_db.py
Open a new teminal window and activate your virtual enviroment, then run the app using
python app.py
Now open your browser and visit http://localhost:5000
Open a new terminal window and activate your virtual environment, then run tests using
python tests.py