Skip to content

Commit 878189f

Browse files
committed
run pre-commit
1 parent 7481c04 commit 878189f

File tree

1 file changed

+29
-24
lines changed

1 file changed

+29
-24
lines changed

CONTRIBUTING.md

Lines changed: 29 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ Index/
2828
└── Sponsor Us
2929
```
3030

31-
3231
## Development structure
3332

3433
The diagram below outlines the file structure of the development environment. The root node represents the main directory, containing essential files and folders like `_config.yml`, `_posts`, `_layouts`, `_includes`, `_data`, `_articles`, and `assets`. Each folder contains further organization of specific files. This will aid contributors in understanding how the project is organized and where different components are located.
@@ -162,36 +161,42 @@ This project uses uv as it is currently the easiest way for developers with diff
162161
Events are currently created manually by adding entries to `_data/events.json`. To create a conference, use the following JSON structure:
163162
164163
```
164+
165165
{
166-
"name": "Conference name",
167-
"url": "https://blackpythondevs.com/",
168-
"start_date": "2025-02-10",
169-
"end_date": "2025-09-20",
170-
"location": "Thailand",
171-
"description": "Lorem ipsum dolor sit amet consectetur adipiscing elit ...",
172-
"speaker": "Tim Osahenru"
166+
"name": "Conference name",
167+
"url": "https://blackpythondevs.com/",
168+
"start_date": "2025-02-10",
169+
"end_date": "2025-09-20",
170+
"location": "Thailand",
171+
"description": "Lorem ipsum dolor sit amet consectetur adipiscing elit ...",
172+
"speaker": "Tim Osahenru"
173173
}
174+
174175
```
175176
176177
### Regular meetups
177178
178179
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:
179180
180181
```
181-
{
182-
"name": "Coffee and Code",
183-
"date": "2023-09-20",
184-
"location": "Online (Discord)",
185-
"description": "A casual meetup for developers to code together.",
186-
"speaker": "Jay Miller",
187-
"topic": "Web Development"
188-
},
189-
{
190-
"name": "Monthly meetup",
191-
"date": "2023-09-20",
192-
"location": "Remote",
193-
"description": "Share ideas, and network over coffee.",
194-
"speaker": "Jay Miller",
195-
"topic": "Open Source"
196-
}
182+
183+
{
184+
"name": "Coffee and Code",
185+
"date": "2023-09-20",
186+
"location": "Online (Discord)",
187+
"description": "A casual meetup for developers to code together.",
188+
"speaker": "Jay Miller",
189+
"topic": "Web Development"
190+
},
191+
{
192+
"name": "Monthly meetup",
193+
"date": "2023-09-20",
194+
"location": "Remote",
195+
"description": "Share ideas, and network over coffee.",
196+
"speaker": "Jay Miller",
197+
"topic": "Open Source"
198+
}
199+
200+
```
201+
197202
```

0 commit comments

Comments
 (0)