# python-neo4j-utils

Restore script

## Getting Started

This script is intended to be run in parallel on all nodes in a Neo4j cluster.

### Setup Environment

Copy the environment shadow file and make the necessary changes:

```shell
cp .env.shadow .env
```

### Installation

Before starting make sure you have python3.6 installed.

Install the dependencies:

```shell
make env
```

### Testing

To run the linter and tests, all you have to do is to run:

```bash
make lint
make test
```

### Updating

To install new dependencies:

```bash
make env
```

