Skip to content

angular-seattle/angular-seattle

Repository files navigation

CircleCI Netlify Status Commitizen friendly

Angular Seattle

Angular Seattle

This project was generated with Angular CLI version 7.3.8.

Current Features

  • ✅ Angular 8
  • ✅ PWA
  • ✅ CI/CD (CircleCI and Netlify)
  • ✅ Angular Material
  • ✅ Event Information
  • ✅ Past talks
  • ✅ Twitter

Future Feature Ideas

Please see our CONTRIBUTING.md for how to contribute to the project. Please review our Code of Conduct prior to contributing.

Adding an event

To add an event to the calendar, open a pull request to update src/assets/events/events.json. Add an event in the below format:

{
  "id": 2, // increment id by one
  "name": "My Cool Event",
  "date": "2019-08-31T19:30:00", // Date must be in ISO8601 format
  "venue": {
    "name": "My Venue",
    "address": "123 Event street",
    "city": "Seattle",
    "country": "USA"
  },
  "link": "https://place-to-rsvp.com", // this can be any link that you want to direct users to. Usually where they should go to RSVP to the event.
  "description": "This is my super fancy Angular Seattle event. It will have these talks: 1. Getting Started 2. Going Above and Beyond with Angular 3. Making a Pizza with Angular"
}