Creating config into mdms:-

If you are creating a new module then, first we need to enable that module as true in citymodule.json
update the Module in citymodule.json.

 

 {
      "module": "BR",
      "code": "BR",
      "active": true,
      "order": 1,
      "tenants": [
        {
          "code": "pb.jalandhar"
        },
        {
          "code": "pb.nawanshahr"
        },
        {
          "code": "pb.amritsar"
        }
      ]
    },

 

Suppose your module name is BR(Birth-Registration) then change the module and code as BR. and update the citymodule.json file.

After Creating the project structure add the required dependency as well.

 

  "dev:br": "cd packages/modules/br && yarn start",
  "build:br": "cd packages/modules/br && yarn build", 

 

 

 

 

"@egovernments/digit-ui-module-br":"1.5.4",