This is a cloud computing project.
Below are the installing and running procedues
For this project, I used : npm v6.14.10, pip v20.3.3, python v3.7
- make sure you have python, npm, and pip installed on your machine.
- Enter in to the directary src/templates/ and run the command
npm install
. This will download and install all the dependencies listed in package.json. - Create a python virtualenv(Optional) using miniconda:
conda create -n cloud python=3.7
- Run
conda activate cloud
- Install python dep with the command
$ pip install -r requirements.txt
- In terminal :
export FLASK_DEBUG=1 && export FLASK_ENV=development
- Run
flask run
in the root dir - In the templates directory, start the npm watcher to build the front end code with the command
npm run watch
- If all is working correctly, you will be given an address http://127.0.0.1:5000/
You can find a walkthrough of how to build this application from scratch on my blog