Skip to content

ilooklike/ilooklike.us

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ilooklike.us

Web App for ilooklike.us

A location-based story sharing application that will encourage community-building.

Getting up and running

With rvm

  1. Install postgresql
  2. Install ruby version manager
  3. Clone project repository
git clone git@github.com:ilooklike/ilooklike.us.git
  1. Switch to repository folder
cd /path/to/application
  1. 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
  1. Install bundler - ruby packege manager
gem install bundler
  1. Install all gems with bundler
bundle install
  1. Create database config file from template
cp config/database.yml.example config/database.yml
  1. Fill database.yml with creadentials for your local db. It might require you to configure postgresql first
  2. Create project database with rake
bundle exec rake db:create
  1. Run server
rails s

The end! Now you can access application with localhost:3000 in your browser

Releases

No releases published

Packages

No packages published