Skip to content

A repo for data relating to the svelte community and events

Notifications You must be signed in to change notification settings

EtherbitHQ/community

 
 

Repository files navigation

svelte-community

This repo currently contains data relating to Svelte meetups. In time this may become the home for a meetup site and a place to store other community related information.

Add an event

To add an event simple make a PR adding your event to the data/events.json file.

The JSON file is an array of events matching the following structure:

interface EventLocation {
  venue?: string;
  address: string;
  city: string;
  state_region: string;
  country: string;
}

interface EventOrganiser {
  name: string;
  link: string;
}

interface SvelteEvent {
  name: string;
  url: string;
  time_start: number;
  time_end: number;
  location: EventLocation;
  organisers: EventOrganiser[];
  details?: string;
}

An example entry might look this:

{
  "name": "Svelte Meetup - Kazakhstan",
  "url": "https://www.meetup.com/svelte-kazakhstan",
  "time_start": "2019-11-04-1930",
  "time_end": "2019-11-04-2200",
  "location": {
    "venue": "Wonderous Conference Centre",
    "address": "34 Some Street",
    "city": "Almaty",
    "state_region": "Almaty",
    "country": "Kazakhstan"
  },
  "organisers": [
    {
      "name": "Human Person with name",
      "link": "https://twitter.com/person"
    }
  ],
  "details": "Come join us and talk about Svelte. Many exciting thigs will happen."
}

All events need a time, location, url and at least one contactable organiser. If the venue is not yet confirmed then enter 'To be confirmed' in the relavent Location fields and enter in as much information as you currently know. Dates should be provided in local time as YYYY-MM-DD-TTTT (24-hour time).

About

A repo for data relating to the svelte community and events

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 80.1%
  • JavaScript 14.0%
  • CSS 5.9%