Event planner and subscription.
The Skedge web application is built using Ruby, Ruby on Rails and PostgreSQL. It uses Foreman to run locally as close to production as possible.
It uses the Phusion Passenger web server, and it hosted on Heroku.
$ cd ~/your-dev-folder
$ git clone git@github.com:rivercodi/skedge.git
$ npm install
$ gem install bundler foreman
$ bundle install
$ touch .env
$ touch config/application.yml
FACEBOOK_KEY=key
FACEBOOK_SECRET=key
TWITTER_KEY=key
TWITTER_SECRET=key
FACEBOOK_KEY: 'key'
FACEBOOK_SECRET: 'key'
TWITTER_KEY: 'key'
TWITTER_SECRET: 'key'
$ rake db:create
$ rake db:migrate
$ rspec
$ foreman start