A webapp for UCSD event organizers to post their events in one place so students can more easily keep track of on-campus events.
- To post, users need to be logged in and authenticated
- The map zooms in to the location of the event when an event card is clicked
- User can click on the event flyer to see a larger version of it
- Events in the home page is sorted by time
- Install Node and npm here
- Install
yarn
with the commandnpm install -g yarn
- Set up a MongoDB Atlas instance. See this video for help!
- Create a
.env
file with a variable calledDB_URL
and paste your MongoDB url:
DB_URL=mongodb://mongodburl.example.com:portnumber
cd
intoclient
and run the commandyarn install
to install all dependencies- To start the client, run
yarn start
in the same directory - In another command window,
cd
intoserver
and runyarn install
andyarn start
to install all dependencies and start the server. - Happy hacking!