Skip to content

LionelPaulus/Rent-a-set

Repository files navigation

Rent a set

HETIC-G1-10

Start the app

  1. Install postgresql. For mac users, do $ brew install postgresql. Other OS, look here.
  2. Install the bundler gem with $ gem install bundler.
  3. If you do not have it, you will need to install sqlite3 with $ brew install sqlite3, $ yum install sqlite-devel or $ apt-get install libsqlite3-dev.
  4. If you do not have it, you will need to install ImageMagick with $ brew install imagemagick.
  5. Install dependencies $ bundle install.
  6. Run DB migrations $ rake db:migrate.
  7. Start the app $ rails s.

Required IDE plugins

Resources

Branch conventions

Type Branch name Example
Feature feature/[feature-name] feature/add-header
Change change/[change-name] change/header-color
Bugfix bugfix/[bugfix-name] bugfix/header-responsive

Please delete your branch after finishing your work (merge completed).