diff options
author | 2017-08-17 14:52:44 -0400 | |
---|---|---|
committer | 2017-08-17 14:53:24 -0400 | |
commit | 9015d0d86d23a83e578ded1bd95485d467515208 (patch) | |
tree | 577556c635e60bbd8446416c2cb6492f4b583a5f /README.md | |
parent | 3a32363f46a29cfed9ed1c28053424852f54382d (diff) |
Publish seed code for the OOM Dashboard
First open-source release of the ONAP Operations Manager Dashboard web application.
Issue: CCSDK-61
Change-Id: I902f789692d76ee583aa967682e39f03b6578fe9
Signed-off-by: Christopher Lott (cl778h) <clott@research.att.com>
Diffstat (limited to 'README.md')
-rwxr-xr-x | README.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100755 index 0000000..b01124c --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# ONAP Operations Manager Dashboard + +## Overview + +This is the web UI for the ONAP Operations Manager, also known as the OOM Dashboard. +It consists of the following Maven projects: +- ecd-app-common: Java classes that run in a web container like Tomcat +- ecd-app-overlay: CSS, HTML and Javascript resources for the web application +- ecd-app-os: Web application project with featurers for ONAP use + +### Prerequites + +The web application requires these resources: +- Java version 8 +- Apache Tomcat version 8.0 or 8.5 +- A Postgresql database, version 9.2 or later + +## Build instructions + +Build all artifacts by invoking maven in this directory: + + mvn package + +### Deployment steps + +1. Create a Postgre schema within a Postgres database +2. Populate the schema using the DDL and DML scripts in the appropriate db-scripts areas; see the README.md there for instructions to set the user's default schema. +3. Configure the application by editing the files portal.properties, system.properties and dashboard.properties. +4. Build a war file within the appropriate web application project ('mvn package'). +5. Deploy the war file to Tomcat. +6. Login the first time using credentials stored in the fn_user table at the "login_external.htm" page. |