You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialize a nodejs express application that has instructions + readme to run with pm2, with a mysql db using sequelize.
Add the following models (only support the source:
Event - An event is a some meetup or other event people can attend
id (uuid) - primary key
created (datetime) - set when the object is created in our db
source (string - enum) [MEETUP, EVENTBRITE] - this is the source of the event. Paired with the sourceId, it will allow fetching of the event through the API later.
name (string) - this is the name of the event
description (string - blob) - this is a description of the event
url (string) - this is a link to the event
photoUrl (string) - this is a URL of a thumbnail for the event
sourceId (string) - this is the ID for this object on the foreign service
time (datetime) - this is the datetime of the start of the event. This will be pulled from the API
timeLocal (string) - this is the locally formatted time of the start of the event. It will be generated by our service
country (string) - 2 letter country code for the country hosting the event
city (string) - city where the event his hosted
lat (number, best format for latitude in sequelize) - latitude of the event
lon (number, best format for longitude in sequelize) - longitude of the event
Group - a group is an online group that organizes an event
id (uuid) - primary key
created (datetime) - set when the object is created in our DB
source (string - enum) [MEETUP, EVENTBRITE] - this is the source of the group. Paired with the sourceId, it will allow fetching of the group through the API later.
name (string) - this is the name of the group
url (string) - this is a link to the group
photoUrl (string) - this is a thumbnail for the group's photo
sourceId (string) - this is the ID of the group object on the third party site
The text was updated successfully, but these errors were encountered:
Initialize a nodejs express application that has instructions + readme to run with pm2, with a mysql db using sequelize.
Add the following models (only support the source:
Event - An event is a some meetup or other event people can attend
MEETUP
,EVENTBRITE
] - this is the source of the event. Paired with the sourceId, it will allow fetching of the event through the API later.Group - a group is an online group that organizes an event
MEETUP
,EVENTBRITE
] - this is the source of the group. Paired with the sourceId, it will allow fetching of the group through the API later.The text was updated successfully, but these errors were encountered: