Skip to content

Commit

Permalink
Merge pull request #115 from rathanak-0080/ES-898
Browse files Browse the repository at this point in the history
ES-898
  • Loading branch information
aranaravi authored Mar 25, 2024
2 parents 21a8b00 + 3839171 commit 9add3ef
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
1 change: 1 addition & 0 deletions signup-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ ENV artifactory_url_env=${artifactory_url}
ENV nginx_dir=/usr/share/nginx
ENV work_dir=${nginx_dir}/html
ENV i18n_path=${work_dir}/locales
ENV theme_path=${work_dir}/theme
ENV plugins_path=${nginx_dir}/html/plugins
ENV plugins_format=iife

Expand Down
12 changes: 12 additions & 0 deletions signup-ui/configure_start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ chmod 775 $i18n_path/*

cd $i18n_path
unzip -o esignet-signup-i18n-bundle.zip
rm esignet-signup-i18n-bundle.zip

#theme bundle
echo "Downloading theme bundle files"
wget --no-check-certificate --no-cache --no-cookies $artifactory_url_env/artifactory/libs-release-local/theme/esignet-signup-theme.zip -O $theme_path/esignet-signup-theme.zip

echo "unzip i18n bundle files.."
chmod 775 $theme_path/*

cd $theme_path
unzip -o esignet-signup-theme.zip
rm esignet-signup-theme.zip

echo "Pre-requisites download completed."

Expand Down
4 changes: 2 additions & 2 deletions signup-ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
<!-- runtime config -->
<script src="%PUBLIC_URL%/env-config.js"></script>
<script defer src="%PUBLIC_URL%/theme-config.js"></script>
<link rel="stylesheet" href="%PUBLIC_URL%/variables.css">
<link rel="stylesheet" href="%PUBLIC_URL%/theme/variables.css">
<!-- runtime config -->
<title>Sign Up</title>
<title>eSignet-Signup</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
4 changes: 2 additions & 2 deletions signup-ui/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"short_name": "eSignet-Signup",
"name": "eSignet SignUp",
"icons": [
{
"src": "favicon.ico",
Expand Down
File renamed without changes.

0 comments on commit 9add3ef

Please sign in to comment.