Skip to content

Installation

Edoardo Rosa edited this page Mar 4, 2022 · 1 revision

Requirements

  1. docker-compose installed
  2. an AWS account configured to be used with awscli with attached the policy arn:aws:iam::aws:policy/ReadOnlyAccess
  3. Golang (>= 1.18) installed

Setup

  1. Clone the repository
git clone --depth=1 https://github.com/primait/nuvola.git; cd nuvola
  1. Create and edit, if required, the .env file to set your DB username/password/URL.
cp .env_example .env;
  1. Start the Neo4j docker instance if you don't have any instance installed on your machine (this is the suggest way to start using nuvola)
make start
  1. Compile the tool; the output is a binary with the name nuvola
make build
  1. OPTIONAL: install Neo4j Browser to easily navigate the graph.

  2. OPTIONAL: cross-compile the binary for other platforms:

make compile
Clone this wiki locally