aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: d5f0c66f4c292228111d786dfa272c0d3a544d16 (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
# Configuration Persistence Service

This folder contains all files for
[Configuration Persistence Service](https://wiki.onap.org/pages/viewpage.action?pageId=81406119).

The code here is related to CPS POC, then it must be kept self contained in this cps folder to prevent any impact on
current ccsdk components and to be ready to be moved in its own repo once CPS becomes a standalone project.


## Running Locally

* Run a postgres container instance and create `cpsdb' database:

```
CREATE USER cps WITH PASSWORD 'cps';
CREATE DATABASE cpsdb OWNER cps;
```

* Build (from cps root folder)

```bash
mvn clean package
```

* Run (from cps root folder)

```bash
java -DDB_HOST=localhost -DDB_USERNAME=cps -DDB_PASSWORD=cps -jar cps-rest/target/cps-rest-0.0.1-SNAPSHOT.jar
```

* Browse
  * [Swagger UI](http://localhost:8080/api/cps/swagger-ui/index.html)
  * [Api Documentation](http://localhost:8080/api/cps/v3/api-docs)