Fix init db schema script

Issue-ID: CPS-82
Signed-off-by: Bruno Sakoto <bruno.sakoto@bell.ca>
Change-Id: I8c719935b78aaeab9d2f7a0af91b2192df897eb1
1 file changed
tree: 0343fc3203c3ec1ed4fe9a2914290e85d6a8659c
  1. cps-bom/
  2. cps-dependencies/
  3. cps-parent/
  4. cps-rest/
  5. cps-ri/
  6. cps-service/
  7. docker-compose/
  8. .gitignore
  9. .gitreview
  10. INFO.yaml
  11. LICENSE.txt
  12. pom.xml
  13. README.md
  14. version.properties
README.md

Configuration Persistence Service

This folder contains all files for Configuration Persistence Service.

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)
mvn clean package
  • Run (from cps root folder)
java -DDB_HOST=localhost -DDB_USERNAME=cps -DDB_PASSWORD=cps -jar cps-rest/target/cps-rest-0.0.1-SNAPSHOT.jar