Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilmulinti authored Mar 7, 2024
1 parent abeca60 commit eeb4863
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,41 @@ Click DIGIT-Install workflow.
Select Run workflow.
When prompted, type "destroy". This action starts the terraform_infra_destruction job.
You can observe the progress of the destruction job in the actions window.

**Create Superuser**
kubectl port-forward svc/egov-user -n egov 8080:8080
And run the below curl:

curl --location 'http://localhost:8080/user/users/_createnovalidate' \
--header 'Content-Type: application/json' \
--data-raw '{
"requestInfo": {
"apiId": "Rainmaker",
"ver": ".01",
"ts": null,
"action": "_update",
"did": "1",
"key": "",
"msgId": "20170310130900|en_IN",
"authToken": "51e00caf-3218-4f15-ba70-a45f7d40abc1"
},
"user": {
"userName": "admin",
"name": "Admin User",
"gender": null,
"mobileNumber": "9898989898",
"type": "EMPLOYEE",
"active": true,
"password": "eGov@123",
"roles": [
{
"name": "Super User",
"code": "SUPERUSER",
"tenantId": "mz"
}
],
"emailId": "[email protected]",
"tenantId": "mz"
}
}'

0 comments on commit eeb4863

Please sign in to comment.