Web App for ilooklike.us
A location-based story sharing application that will encourage community-building.
- Install postgresql
- Install ruby version manager
- Clone project repository
git clone git@github.com:ilooklike/ilooklike.us.git
- Switch to repository folder
cd /path/to/application
- Install required ruby version. Right now it's
2.2.3
, but it might be changed soon. So you find relevant verion in.ruby-version
file
rvm install 2.2.3
- Install bundler - ruby packege manager
gem install bundler
- Install all gems with bundler
bundle install
- Create database config file from template
cp config/database.yml.example config/database.yml
- Fill database.yml with creadentials for your local db. It might require you to configure postgresql first
- Create project database with rake
bundle exec rake db:create
- Run server
rails s
The end! Now you can access application with localhost:3000 in your browser