Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Executing Spring-Boot application (WS API)

Info

Source code of all the components can be downloaded from the code repository (Catalog QT2)

Code Block
> git clone https://YOUR_USER_NAME_AT_GATEWAY@gforge6.eufus.eu/git/catalog_qt_2

If you don't have access yet, make sure to request the access.

Requirements

Catalog QT ver. 2 requires following components to be installed on the machine where it will be started

...

To create DB schema inside mysql you will need root password for your MySQL installation. Then, you can run following:




Code Block
# WARNING! This line will drop schema: itm_catalog_qt and create it from the scratch. Make sure you are not destroying things.

> mysql -u root -p < sql/schema/catalog_qt_db.sql


This script will create two users: itm_catalog_ro/itm_catalog_ro and user itm_catalog_rw/itm_catalog_rw with read-only and read-write privileges, respectively.

...