summaryrefslogtreecommitdiffstats
path: root/local-setup/README.md
blob: e8cab90a749022ded9e59a5ecadf67a020dab964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Local setup for AAI

### Usage

Build dev images:

```
mvn clean package
```

Run integration tests:

```
mvn clean verify -P integration-test
```

### Start local AAI

1. Janus setup

Modify both `janus-cached.properties` and `janus-realtime.properties` to the following (for all micro-services that will connect to the local Cassandra backend)

```
storage.backend=cassandra
storage.hostname=localhost
storage.cassandra.keyspace=onap # or different keyspace name of your choosing
```

2. Start compose

```
cd src/main/docker
docker-compose up --force-recreate
```