Ceetup, a Meetup clone

This is a Rails 5.1.4 with Ruby 2.4.1 application. As RDBMS we use SQLite. NoSQL Redis is needed for Action Cable and to keep track of online users.

Cloning the application

  • Make sure Ruby version 2.4.1 is installed and bundler gem available.
  • Execute:
git clone https://github.com/martincabrera/ceetup.git
  • Execute:
bundle install

SQLite Setup

rake db:create
rake db:migrate
rake db:seed

Redis Configuration

  • Redis has to be installed in localhost and in its default port: 6379

Specs

  • Execute:
bundle exec rspec

How to run the application

  • Execute:
rails s
  • Visit:
http://localhost:3000