This project is an application to handle event organization, speakers, attendees, etc.
- Ruby 2.4.1
- PostgreSQL 9.x or 10
- For Debian you will need
libpq-dev
in order to be able to installpg
gem
apt install libpq-dev
- For Debian you will need
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