From 6471284af891d330a49db0d00e2456f757a53ba4 Mon Sep 17 00:00:00 2001 From: Dominik Mizyn Date: Tue, 3 Sep 2019 15:19:52 +0200 Subject: portal-BE documentation up Documentation up Issue-ID: PORTAL-710 Change-Id: I87e78123b5bc4133d5699c1e32af9e8a5b70c535 Signed-off-by: Dominik Mizyn portal-BE documentation up Documentation up Issue-ID: PORTAL-710 Change-Id: I87e78123b5bc4133d5699c1e32af9e8a5b70c535 Signed-off-by: Dominik Mizyn portal-BE documentation up Documentation up Issue-ID: PORTAL-710 Change-Id: I87e78123b5bc4133d5699c1e32af9e8a5b70c535 Signed-off-by: Dominik Mizyn --- docs/tutorials/index.rst | 1 + docs/tutorials/portal-BE/index.rst | 14 ++++++++++ docs/tutorials/portal-BE/setting-up.rst | 48 +++++++++++++++++++++++++++++++++ 3 files changed, 63 insertions(+) create mode 100644 docs/tutorials/portal-BE/index.rst create mode 100644 docs/tutorials/portal-BE/setting-up.rst (limited to 'docs') diff --git a/docs/tutorials/index.rst b/docs/tutorials/index.rst index 5af68007..ed3cd777 100644 --- a/docs/tutorials/index.rst +++ b/docs/tutorials/index.rst @@ -7,5 +7,6 @@ Portal: Tutorials :maxdepth: 2 portal-sdk/index + portal-BE/index diff --git a/docs/tutorials/portal-BE/index.rst b/docs/tutorials/portal-BE/index.rst new file mode 100644 index 00000000..9ab7c1aa --- /dev/null +++ b/docs/tutorials/portal-BE/index.rst @@ -0,0 +1,14 @@ +.. Building ONAP Portal SDK Web Applications documentation master file, created by + sphinx-quickstart on Mon Aug 7 12:47:34 2017. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Building ONAP Portal BE Applications +========================================= + +.. toctree:: + :maxdepth: 6 + :caption: Contents: + + setting-up + diff --git a/docs/tutorials/portal-BE/setting-up.rst b/docs/tutorials/portal-BE/setting-up.rst new file mode 100644 index 00000000..a2155c39 --- /dev/null +++ b/docs/tutorials/portal-BE/setting-up.rst @@ -0,0 +1,48 @@ +Setting up +========== + +Dependencies +------------ + +In order to build Portal BE applications on your machine, you'll need to install the following: + +1. OpenJDK 8 +2. Maven +3. Docker +4. Docker Compose + +Cloning the Portal repository +--------------------------------- + +Clone the Portal repository with git: + +:: + + git clone "https://gerrit.onap.org/r/portal" + +Building +----------------- + +:: + + cd portal-BE/ + ./build.sh + +Viewing your app +---------------- + + +:: + + http://localhost:8080/login + +To log in, use user/password 'demo/demo123'. + +.. _access the h2-console: http://localhost:8080/h2-console/ + +Change: +Saved Settings: Generic MySQL +Driver Class: com.mysql.cj.jdbc.Driver +JDBC URL: jdbc:mysql://portal-db:3306/testdb +User Name: portal +Password: Test123456 \ No newline at end of file -- cgit 1.2.3-korg