The SCSB Middleware codebase and components are all licensed under the Apache 2.0 license, with the exception of a set of API design components (JSF, JQuery, and Angular JS), which are licensed under MIT X11.
SCSB-UI is a microservice application that provides the User Interface for the application.The User Interface has a user login on successful authentication. Based on the user’s privileges, the User Interface provides search functionality, request, reporting, batch jobs accessibility, and user management.
- Java 11
- Docker 19.03.13
-
Cloud Config Server Dspring.cloud.config.uri=http://scsb-config-server:8888
-
external-application.properties
security.oauth2.resource.jwt.key-value = XXXXXXXXXXXX
- Copy dist folder to src/main/static
sudo cp -r scsb-ui-angular-build/dist/* /scsb-ui-service/src/main/resources/static/
Download the Project , navigate inside project folder and build the project using below command
./gradlew clean build -x test
Naviagte Inside project folder where Dockerfile is present and Execute the below command
sudo docker build -t scsb-ui-service .
User the below command to Run the Docker
sudo docker run --name scsb-ui-service -v /data:/recap-vol --label collect_logs_with_filebeat="true" --label decode_log_event_to_json_object="true" -p 9091:9091 -e "ENV= -Dorg.apache.activemq.SERIALIZABLE_PACKAGES="*" -Dspring.config.location=/recap-vol/config/external-application.properties -Dspring.cloud.config.uri=http://scsb-config-server:8888 " --network=scsb -d scsb-ui-service