Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 534 Bytes

README.md

File metadata and controls

34 lines (24 loc) · 534 Bytes

Freevents

This project is an application to handle event organization, speakers, attendees, etc.

Requirements

  • Ruby 2.4.1
  • PostgreSQL 9.x or 10
    • For Debian you will need libpq-dev in order to be able to install pg gem
    apt install libpq-dev

Installation

Clone the repo

git clone http://github.com/tsolar/freevents.git
cd freevents

Create PostgreSQL user and database

sudo -u postgres createuser $USER -s
rails db:create

Run migrations

rails db:migrate