Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 777 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 777 Bytes

Start server

cd server
# (optional) create and activate a virtualenvironment
virtualenv venv
source venv/bin/activate

pip install -r requirements.txt
python server.py

Now Swagger API description is available in http://localhost:5000. (documentation is TODO)

Run server side tests :

cd server
python -m unittest test_server.py

Unittest module should come by default with Python.

Start serving frontend

cd frontend
npm install
npm run serve

TODO