Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 648 Bytes

README.md

File metadata and controls

44 lines (32 loc) · 648 Bytes

RubyJax Website

This project is an API for the local RubyJax website. In its current form it list the current upcoming talks.

Prequisites

  • Ruby version: 2.3.1
  • Rails version: 5.1.2
  • Database: Postgres
  • Test suite: RSpec

Getting Started

Clone the application:

clone [email protected]:rubyjax/RubyJaxRailsApi.git
cd RubyJaxRailsApi

Prepare your database:

rake db:create
rake db:migrate

Run the tests

You can run the test suite, which is RSpec based, by executing the following command:

rspec

Seed the database

rake db:seed

Start Web Server - Development environment

rails server