MTM is an app used in the course CMPUT401 at the University of Alberta. The application was developed by Diego Serrano during the Winter of 2018.
First clone the application code into any directory on your disk (preferably, not using spaces in the folder structure)
$ git clone https://github.com/dfserrano/MTM-API.git
$ cd MTM-APIInstall virtualenv with pip
$ pip install virtualenvCreate a new virtualenv and activate it
$ virtualenv venv
$ source venv/bin/activateInstall the required libraries: flask-restplus, Flask-SQLAlchemy, and flask-cors
pip install flask-restplus
pip install Flask-SQLAlchemy
pip install -U flask-corsRun the application:
./run.shThe application will be available at port 8888. Then, to access the Swagger API documentation, the address you have to type is:
These resources were used for the creation of this app: