SFWR ENG 4HC3 Milestone 3
Check out the milestone design document here
- Clone the repo
- cd into the repo
bundle install
- If you have trouble installing
pg
, try this:
* If you do not already have postgres on your computer
brew install postgres
sudo su
env ARCHFLAGS="-arch x86_64" gem install pg
rails server
- To run migrations:
rake db:migrate
- To get the
paperclip
gem working, you need to install imagemagick:brew install imagemagick
(for Mac's) - head over to
localhost:3000
on your browser ✨
Sublime Text Settings (Sublime Text -> Preferences -> Settings-User) :
{
"ensure_newline_at_eof_on_save": true,
"tab_size": 2,
"translate_tabs_to_spaces": true,
"trim_trailing_white_space_on_save": true
}