RESTful access to the DMP
- Mongo DB 3.2
- Python 2.7.10+
- pyenv
- pyenv virtualenv
- Python Modules:
- mg-dm-api
- Flask
- Flask-Restful
- Waitress
Cloneing from GitHub:
git clone https://github.com/Multiscale-Genomics/mg-rest-dm.git
To get this to be picked up by pip if part of a webserver then:
pip install --editable .
pip install -r requirements.txt
This should install the required packages listed in the setup.py
script.
Installation via pip:
pip install git+https://github.com/Multiscale-Genomics/mg-rest-dm.git
Requires a file with the name mongodb.cnf
with the following parameters to define the MongoDB server:
[dmp]
host = localhost
port = 27017
user = testuser
pass = test123
db = dmp
Customise the rest/auth_meta.json
file to locate the authentication server
git clone https://github.com/Multiscale-Genomics/mg-rest-dm.git
cd mg-rest-dm
pyenv virtualenv 2.7.12 mg-rest-dm
pyenv activate mg-rest-dm
pip install git+https://github.com/Multiscale-Genomics/mg-dm-api.git
pip install -e .
pip deactivate
Starting the service:
nohup ${PATH_2_PYENV}/versions/2.7.12/envs/mg-rest-dm/bin/waitress-serve --listen=127.0.0.1:5002 rest.app:app &