Skip to content

kathleenmoran/private-events

Repository files navigation

Private Events

A website where users can sign up for and create events.

See a live version of this website here. Sign in with the email benjaminfranklin@gmail.com and password benjaminfranklin to view an account that has already been created.

Demo

private_events_demo.mov

Features

  • Users can create, edit, and delete events
  • Users can attend other users' events
  • Users can view all events they have signed up for or created
  • Events are sorted into past and future sections
  • Form validation provides feedback if user has entered invalid data
  • User is authenticated before performing actions such as creating events and viewing private events

How to Use

To view the live site, go here. Sign in with the email benjaminfranklin@gmail.com and password benjaminfranklin to view an account that has already been created.

To run locally you must have [Ruby]https://www.ruby-lang.org/en/downloads/) and Ruby on Rails installed. This application was written Ruby 3.1 and Ruby on Rails 7.

If you have Ruby and Ruby on Rails installed, clone this repo:

$ git clone git@github.com:kathleenmoran/private-events.git

Install the required gems:

$ bundle install

Migrate the database:

$ rails db:migrate

Run a local server:

$ rails server

Finally, navigate to localhost:3000 in your browser.

Style Guide

Written with the community Ruby style guide.

Future Improvements

  • Allow users to invite other users to their private events

Gratitudes

This project is based off of an assignment from The Odin Project. Inspiration for the layout of this README was drawn from ChargrilledChook's READMEs.