This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #515 from rakesh-wt-egov/pgr-develop
Pgr develop
- Loading branch information
Showing
2 changed files
with
52 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,30 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<link rel="icon" href="https://cdn.jsdelivr.net/npm/@egovernments/digit-ui-css/img/browser-icon.png"/> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap" rel='stylesheet' type='text/css'> | ||
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected]/dist/index.css"/> | ||
<!-- <link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-css/dist/index.css"/> --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||
<meta name="theme-color" content="#00bcd1"/> | ||
<title>mSeva</title> | ||
<!-- <script src="https://s3.ap-south-1.amazonaws.com/egov-dev-assets/globalConfigs.js"></script> --> | ||
<script> | ||
var globalConfigs = (function () { | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="https://cdn.jsdelivr.net/npm/@egovernments/digit-ui-css/img/browser-icon.png" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap" | ||
rel='stylesheet' type='text/css'> | ||
<link rel="stylesheet" href="https://unpkg.com/@egovernments/[email protected]/dist/index.css" /> | ||
<!-- <link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-css/dist/index.css"/> --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#00bcd1" /> | ||
<title>mSeva</title> | ||
<!-- <script src="https://s3.ap-south-1.amazonaws.com/egov-dev-assets/globalConfigs.js"></script> --> | ||
<script> | ||
var globalConfigs = (function () { | ||
var stateTenantId = 'pb' | ||
var gmaps_api_key = 'AIzaSyAQOd09-vjmk1sXFb_ZQYDz2nlfhXq7Wf8' | ||
var finEnv = 'uat' | ||
var gmaps_api_key = 'AIzaSyAQOd09-vjmk1sXFb_ZQYDz2nlfhXq7Wf8'; | ||
var finEnv = 'dev'; | ||
var centralInstanceEnabled = false; | ||
var footerBWLogoURL = 'https://s3.ap-south-1.amazonaws.com/egov-uat-assets/digit-footer-bw.png' | ||
var footerLogoURL = 'https://s3.ap-south-1.amazonaws.com/egov-uat-assets/digit-footer.png' | ||
var digitHomeURL = 'https://www.digit.org/' | ||
var assetS3Bucket = 'egov-qa-assets'; | ||
var footerBWLogoURL = 'https://s3.ap-south-1.amazonaws.com/egov-dev-assets/digit-footer-bw.png'; | ||
var footerLogoURL = 'https://s3.ap-south-1.amazonaws.com/egov-dev-assets/digit-footer.png'; | ||
var digitHomeURL = 'https://www.digit.org/'; | ||
var xstateWebchatServices = 'wss://dev.digit.org/xstate-webchat/'; | ||
var assetS3Bucket = 'egov-dev-assets'; | ||
|
||
var getConfig = function (key) { | ||
if (key === 'STATE_LEVEL_TENANT_ID') { | ||
return stateTenantId; | ||
|
@@ -37,22 +42,23 @@ | |
return footerLogoURL; | ||
} else if (key === 'DIGIT_HOME_URL') { | ||
return digitHomeURL; | ||
} else if (key === 'xstate-webchat-services') { | ||
return xstateWebchatServices; | ||
} else if (key === 'S3BUCKET') { | ||
return assetS3Bucket; | ||
} else if (key === "JWT_TOKEN"){ | ||
return "ZWdvdi11c2VyLWNsaWVudDplZ292LXVzZXItc2VjcmV0"; | ||
} | ||
}; | ||
return { | ||
getConfig | ||
}; | ||
}()); | ||
</script> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<!-- | ||
}()); | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<!-- | ||
This HTML file is a template. | ||
If you open it directly in the browser, you will see an empty page. | ||
|
@@ -62,5 +68,6 @@ | |
To begin the development, run `npm start` or `yarn start`. | ||
To create a production bundle, use `npm run build` or `yarn build`. | ||
--> | ||
</body> | ||
</html> | ||
</body> | ||
|
||
</html> |