-
To run server, install virtualenv first https://virtualenv.pypa.io/en/latest/ and create a new virtual environment to load all necessary python packages
-
Go to server folder and install all necessary packages using command "pip install -r requirements.txt"
-
Set environment variables FLASK_ENV=dev and FLASK_APP=webserver.py
-
Create a db for storing all the info using commands i) flask db init ii) flask db migrate iii) flask db upgrade
-
Run the server using python webserver.py
-
To run client, go to client folder and do npm install
-
Now run "npm start" and this should start the client