|
28 | 28 | └── Sponsor Us |
29 | 29 | ``` |
30 | 30 |
|
31 | | - |
32 | 31 | ## Development structure |
33 | 32 |
|
34 | 33 | 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 |
162 | 161 | Events are currently created manually by adding entries to `_data/events.json`. To create a conference, use the following JSON structure: |
163 | 162 |
|
164 | 163 | ``` |
| 164 | + |
165 | 165 | { |
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" |
173 | 173 | } |
| 174 | + |
174 | 175 | ``` |
175 | 176 |
|
176 | 177 | ### Regular meetups |
177 | 178 |
|
178 | 179 | 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: |
179 | 180 |
|
180 | 181 | ``` |
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 | +
|
197 | 202 | ``` |
0 commit comments