2023-07-07 19:23:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#####################################################################################
|
|
|
|
#
|
|
|
|
# Script to run ACA using the gradle spring pluing bootRun command with password set
|
|
|
|
#
|
|
|
|
#
|
|
|
|
####################################################################################
|
|
|
|
|
2023-07-18 17:09:11 +00:00
|
|
|
CONFIG_FILE="/etc/hirs/aca/application.properties"
|
2023-07-07 19:23:02 +00:00
|
|
|
|
2023-07-07 20:54:02 +00:00
|
|
|
echo "Starting HIRS ACA on https://localhost:8443/HIRS_AttestationCAPortal/portal/index"
|
2023-07-07 19:23:02 +00:00
|
|
|
|
2023-07-18 17:09:11 +00:00
|
|
|
./gradlew bootRun --args="--spring.config.location=$CONFIG_FILE"
|