ARCHIVED, PLEASE SEE multinet-api
This is the server component for the Multinet project. It is a Flask application that serves the Multinet REST API.
To get the server up and running in dev mode:
- Ensure that you have Python 3.7 and Pipenv installed on your system.
- Check out this repository and move into it (e.g.,
cd multinet-server
). - Copy the
.env.default
file to.env
:cp .env.default .env
(or if you prefer, create a symlink:ln -s .env.default .env
). - Install the Pipenv dependencies:
pipenv install
. - Run the server application:
pipenv run serve
. - Visit http://localhost:5000 to ensure that the server is working.
For further details, including how to set up the ArangoDB server and the Multinet client and visualization applications, please see the full documentation.