-
Notifications
You must be signed in to change notification settings - Fork 18
Installation
Edoardo Rosa edited this page Mar 4, 2022
·
1 revision
- docker-compose installed
- an AWS account configured to be used with awscli with attached the policy
arn:aws:iam::aws:policy/ReadOnlyAccess
- Golang (>= 1.18) installed
- Clone the repository
git clone --depth=1 https://github.com/primait/nuvola.git; cd nuvola
- Create and edit, if required, the
.env
file to set your DB username/password/URL.
cp .env_example .env;
- 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
- Compile the tool; the output is a binary with the name
nuvola
make build
-
OPTIONAL: install Neo4j Browser to easily navigate the graph.
-
OPTIONAL: cross-compile the binary for other platforms:
make compile