-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
95 lines (94 loc) · 3.72 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const rulesConfigInfra = require('rules-config/infra');
const IDI = require('openchs-idi');
module.exports = IDI.configure({
"name": "calcutta_kids",
"chs-admin": "admin",
"org-name": "Calcutta Kids",
"org-admin": "ck-admin",
"secrets": '../secrets.json',
"files": {
"adminUsers": {
"dev": ["./users/admin-user.json"],
"uat": ["./users/admin-user.json"],
},
"forms": [
"./registrationForm.json",
"./sesForm.json",
"./general/doctorVisitFollowupForm.json",
"./general/doctorVisitForm.json",
"./child/checklistForm.json",
"./child/childHomeVisit.json",
"./child/pncDoctorCheckup.json",
"./pregnancy/ancHomeVisitForm.json",
"./pregnancy/postAbortionForm.json",
"./pregnancy/ancGMP.json",
"./mother/motherHomeVisitForm.json",
"./mother/motherProgramEnrolmentNullForm.json",
"./general/doctorVisitFollowupAtHomeCancelForm.json"
],
"formMappings": ["./formMappings.json"],
"formDeletions": [
"./child/anthroAssessmentFormDeletions.json",
"./child/birthFormDeletions.json",
"./child/pncDeletions.json",
"./child/enrolmentDeletions.json",
"./general/labTestsDeletions.json",
"./pregnancy/abortionDeletions.json",
"./pregnancy/ancDoctorVisitFormDeletions.json",
"./pregnancy/enrolmentDeletions.json",
"./pregnancy/motherDeliveryFormDeletions.json",
"./pregnancy/pncDeletions.json",
],
"formAdditions": [
"./child/anthroAssessmentFormAdditions.json",
"./child/birthFormAdditions.json",
"./child/enrolmentAdditions.json",
"./child/pncAdditions.json",
"./general/labTestsAdditions.json",
"./pregnancy/ancDoctorVisitFormAdditions.json",
"./pregnancy/enrolmentAdditions.json",
"./pregnancy/motherDeliveryFormAdditions.json",
"./pregnancy/pncAdditions.json",
],
"catchments": ["./catchments.json"],
"checklistDetails": ["./child/checklist.json"],
"concepts": [
"./concepts.json",
"./child/checklistConcepts.json",
"./child/enrolmentConcepts.json",
"./child/homeVisitConcepts.json",
"./child/pncConcepts.json",
"./doctorVisitConcepts.json",
"./pregnancy/ancDoctorVisitConcepts.json",
"./pregnancy/ancHomeVisitConcepts.json",
"./pregnancy/deliveryConcepts.json",
"./pregnancy/pncConcepts.json",
"./pregnancy/pregnancyConcepts.json",
"./migrationConcepts.json",
"./general/cancelConcepts.json"
//"./patchConcepts.json",
],
"locations": ["./locations.json"],
"programs": ["./programs.json"],
"encounterTypes": ["./encounterTypes.json"],
"operationalEncounterTypes": ["operationalModules/operationalEncounterTypes.json"],
"operationalPrograms": ["operationalModules/operationalPrograms.json"],
"operationalSubjectTypes": ["operationalSubjectTypes.json"],
"users": {
"dev": ["./users/test-users.json"],
"uat": ["./users/uat-users.json"],
// "prod": ["./users/importer-user.json"],
},
"rules": [
"./rules/index.js"
],
"organisationSql": [
/* "create_organisation.sql"*/
],
"organisationConfig": ["organisationConfig.json"],
"translations": [
"translations/en.json",
"translations/hi_IN.json",
]
}
}, rulesConfigInfra);