To get this server up and running on your local machine, follow the steps below
- Install python if you don't already have it
- Install pip if you don't already have it
sudo easy_install pip
- Install virtualenv
sudo pip install virtualenv
- Create a new virtual environment
virtualenv env
- Activate the current environment
source env/bin/activate
- Install the project requirements
pip install -r requirements.txt
- Start the server
python server.py
- Open localhost:5000 in a web browser to verify that it's running
Once this has been set up for the first time, getting the server running only requrires two steps
source env/bin/activate
python server.py