/service-notes

Paperwork Notes Service

Primary LanguageElixirGNU Affero General Public License v3.0AGPL-3.0

service-notes

Paperwork Notes Service

Prerequisites

Docker

Get Docker Desktop.

Elixir/Erlang

On MacOS using brew:

% brew install elixir

Building

Fetching all dependencies:

% mix deps.get

Compiling:

% mix compile

Running

First, we need a database. Let's run MongoDB on Docker:

% docker run -it --rm --name mongodb -p 27017:27017 mongo:latest

Second, we need to run service-gatekeeper. Please refer to its documentation.

Then we can run this service from within this cloned repository:

% iex -S mix