For running locally you first have to install Node.js and MongoDB on your machine.
For running multiple versions of Node.js nvm is a very good option.
Clone:
git clone [email protected]:h-da/geli.git
Install Dependencies:
cd geli/api
npm install
cd ../app/webFrontend
npm install
cd ..
First start MongoDB so that it is listening on localhost:27017
. Then you can start up the API server:
cd api
npm run start
cd app/webFrontend
npm run start
Both commands will automatically watch for filesystem changes and recompile the code once you change it.
For more information continue reading the main README.