Skip to content

Commit

Permalink
chore: init
Browse files Browse the repository at this point in the history
  • Loading branch information
abhigyantrips committed Aug 12, 2024
1 parent fcae6d8 commit c3af444
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 2 deletions.
40 changes: 38 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,38 @@
# config
Configuration files for Office Bearers and Contact Details.
# NSS Configuration Files

These files are used by our [mobile application](https://github.com/nss-mitblr/app).

## Office Bearers Format

```json
{
"programme_officers": [
{
"name": "string",
"contact": "string",
"email": "string",
},
{
"...": "..."
}
],
"unit_heads": [
{
"name": "string",
"contact": "string",
"email": "string",
},
{
"...": "..."
}
]
}
```

## Contact Details Format

```json
{
"email": "string"
}
```
3 changes: 3 additions & 0 deletions contact_details.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"email": "[email protected]"
}
26 changes: 26 additions & 0 deletions office_bearers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"programme_officers": [
{
"name": "Dr. Jyoti Shetty",
"contact": "+91 95359 58989",
"email": "[email protected]"
},
{
"name": "Dr. Vinod Hegde",
"contact": "+91 91136 23026",
"email": "[email protected]"
}
],
"unit_heads": [
{
"name": "Nishanth Nithyananda Shet",
"contact": "+91 63601 51894",
"email": "[email protected]"
},
{
"name": "Tarunika D",
"contact": "+91 98841 04295",
"email": "[email protected]"
}
]
}

0 comments on commit c3af444

Please sign in to comment.