Skip to content

Commit 28edf6e

Browse files
committed
Documentation update to show how events are been created and removed dummy data from events.json file
1 parent 6076b2d commit 28edf6e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,10 @@ The diagram below explains how information is generated for the about page, show
167167

168168
- Once you’ve committed and pushed all of your changes to GitHub, go to the page for your fork on GitHub, select your development branch, and click the pull request button. Please ensure that you compare your feature branch to the desired branch of the repo you are supposed to make a PR to. If you need to make any adjustments to your pull request, just push the updates to GitHub. Your pull request will automatically track the changes in your development branch and update it. 🥳
169169

170-
171170
## Creating an event
171+
172172
Events are currently created manually by adding entries to `_data/events.json`. To create a conference, use the following JSON structure:
173+
173174
```
174175
{
175176
"name": "Conference name",
@@ -183,7 +184,9 @@ Events are currently created manually by adding entries to `_data/events.json`.
183184
```
184185

185186
### Regular meetups
187+
186188
We have two recurring meetups: **Coffee and Code** and our **Monthly Meetup**. These events remain consistent in format, with only the **date, time, and speaker** subject to change. Updates can be made within the `meetups` list:
189+
187190
```
188191
{
189192
"name": "Coffee and Code",

_data/events.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
2-
"meetups": [
3-
4-
],
5-
"conferences": [
6-
7-
],
2+
"meetups": [],
3+
"conferences": [],
84
"partners": []
95
}

0 commit comments

Comments
 (0)