FAQ
1) Required setup things?
- i) Install Vs Code -
VS Code Extension -
ii) Install Node JS -
iii) Install Postman - Postman is the tool we use to hit and test the APIs exposed by various services that we have. To install postman, follow the following links -
Postman for linux
2) How to install Yarn?
- Install Yarn -
npm install --global yarn
yarn --version
3) How To add Globalconfig in Digit UI Environment?
- Local Environment:-
To enable it into local development we need to add the javascript code block of globalconfig.js into the index.html
Path:- micro-ui → web → public → index.html
Link:- https://github.com/egovernments/DIGIT-Dev/blob/master/frontend/micro-ui/web/public/index.html
Script:-
<script src="https://s3.ap-south-1.amazonaws.com/egov-dev-assets/globalConfigs.js"></script>
<!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/digit-ui-css@1.4.111/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>
</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.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
Dev Environment:-
To enable it in the dev environment we need to add the javascript code block of telemetry into the
Path:- DIGIT-DevOps/deploy-as-code/helm/environments/dev.yam
4) How to Register New Module in Digit UI?
- Creating config into mdms:-
If you are creating a new module then, first we need to enable that module as true in citymodule.json
and update the Module in citymodule.json.
Suppose your module name is BR(Birth-Registration) then change the module and code as BR. and update the citymodule.json file.
or
Install Dependency
5) In Digit UI Where do we need to add the .env file?
- Add the .env file in the example folder -
If the User is a citizen then we will configure the .env file as follow:-
If the User is an Employee then we configure the .env as follows:-