Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

README.md

File metadata and controls

32 lines (23 loc) · 1.25 KB

Eventify

A webapp for UCSD event organizers to post their events in one place so students can more easily keep track of on-campus events.

Website Demo

Link to demo

Key Features

  • 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

Process to Setup Locally

  • Install Node and npm here
  • Install yarn with the command npm install -g yarn
  • Set up a MongoDB Atlas instance. See this video for help!
  • Create a .env file with a variable called DB_URL and paste your MongoDB url:
DB_URL=mongodb://mongodburl.example.com:portnumber

Running Locally

  1. cd into client and run the command yarn install to install all dependencies
  2. To start the client, run yarn start in the same directory
  3. In another command window, cd into server and run yarn install and yarn start to install all dependencies and start the server.
  4. Happy hacking!