X Tutup
The Wayback Machine - https://web.archive.org/web/20210122011016/https://github.com/paperwork/service-notes
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
lib
 
 
rel
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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
X Tutup