HETIC-G1-10
- Install postgresql. For mac users, do
$ brew install postgresql
. Other OS, look here. - Install the bundler gem with
$ gem install bundler
. - 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
. - If you do not have it, you will need to install ImageMagick with
$ brew install imagemagick
. - Install dependencies
$ bundle install
. - Run DB migrations
$ rake db:migrate
. - Start the app
$ rails s
.
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).