##Event Registration application
Repo: https://github.com/hdfelix/ypreg.git
This is an event registration management site. You can use this site to manage registrations short one-day events that require no hospitality accomodations as well as multi-day events where hospitality accomodations are necessary.
It is currently running on:
- Ruby 2.5.1
- Rails 5.2.0
- Create and manage events
- Create and manage event locations
- Create and manage hospitality locations
- Create and manage different types of users
To get started, clone this repo and run:
$ bundle
The site is configured to use PostgreSQL for all environments (Development|Test|Production). Make sure you install and configure PostgreSQL before running the following commands from your terminal:
$ rails db:create
$ rails db:migrate
Next, Run the following command to create an admin user account:
$ rails ypreg:create_admin
The previous instructions will get you a clean database. If you prefer to see the app with some test data, run the following:
$ rails db:setup
Then you can log in using [email protected]
and password: devaccount
.