public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Search Repo:
Michael Hartl (author)
Sun Mar 02 10:04:28 -0800 2008
commit  b514ef998fc69f05c2108cf7d9d72cdb0d579871
tree    a39d2b7613dd4fdf01f45d12c666388ce189ab82
parent  fa249934b244cf18d5a9b6647a5cc706afa31599
insoshi / INSOSHI_README
100644 22 lines (16 sloc) 0.674 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Here's how to start with insoshi.
 
$ git clone git://67.207.136.60/instantsocial.git
$ cp config/database.example config/database.yml
$ git checkout -b <your name>
$ rake db:migrate:both
$ rake
 
It might fail at this point. If the error message indicates a problem with the Photo controller, follow these directions to install ImageScience:
 
Download FreeImage from http://freeimage.sourceforge.net/download.html
(no ./configure step)
$ make
$ sudo make install
$ sudo gem install image_science
 
If working on developing the application, continue by loading the sample data.
 
$ rake db:sample_data:load
 
To reload the sample data later on, run
$ rake db:sample_data:reload