From f2f295888d035114056b287d01d5e1f5b29b7873 Mon Sep 17 00:00:00 2001 From: Aarshad Devani Date: Sun, 16 Jun 2024 20:06:57 +0530 Subject: [PATCH] Update README.md for Organizers --- README.md | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 75896e2..85095fc 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,19 @@ npm run lint ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). -## For making PR adding the upcoming events at community.json file here is the format: +## Organizer Guide + +For making your event visible on website, raise a PR by adding following element in [community.json](./src/assets/data/community.json) file. Once approved by Organizers, your event will be added on the website (deployment is automated). + +```json { - "community": "GDG Cloud ChapterXYZ", - "city": "XYZ", - "date": "", - "link": "", - "place": "", - "rsvp": "", - "card": "" - } + "community": "", // mention name of your community + "city": "Hyderabad", // which city does it belong to + "place": "EPAM Hyderabad", // brief address of place where your event will be organized + "date": "01/08/2024", // format is DD/MM/YYYY, if date is not found valid it will not be shown + "rsvp": "https://google.com", // rsvp link - bevy/any other forum + "link": "", // link to event listing/event landing page + "latitude": "", // latitude for place + "longitude": "" // longitude for place +} +```