You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- 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. 🥳
169
+
170
+
171
+
## Creating an event
172
+
Events are currently created manually by adding entries to `_data/events.json`. To create a conference, use the following JSON structure:
173
+
```
174
+
{
175
+
"name": "Conference name",
176
+
"url": "https://blackpythondevs.com/",
177
+
"start_date": "2025-02-10",
178
+
"end_date": "2025-09-20",
179
+
"location": "Thailand",
180
+
"description": "Lorem ipsum dolor sit amet consectetur adipiscing elit ...",
181
+
"speaker": "Tim Osahenru"
182
+
}
183
+
```
184
+
185
+
### Regular meetups
186
+
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:
187
+
```
188
+
{
189
+
"name": "Coffee and Code",
190
+
"date": "2023-09-20",
191
+
"location": "Online (Discord)",
192
+
"description": "A casual meetup for developers to code together.",
193
+
"speaker": "Jay Miller",
194
+
"topic": "Web Development"
195
+
},
196
+
{
197
+
"name": "Monthly meetup",
198
+
"date": "2023-09-20",
199
+
"location": "Remote",
200
+
"description": "Share ideas, and network over coffee.",
0 commit comments