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
Michael Hartl (author)
Fri Apr 25 12:22:21 -0700 2008
commit  8f85d368c61e5f73a4724c5e211a74491537bbe4
tree    fc75aef308f345e913bbfd90af405ee9234415b2
parent  a66f830017ff757e60d60cbd12d8157e7ed6e68e
name age message
file .gitignore Mon Oct 06 13:50:17 -0700 2008 Catching Ultrasphinx::UsageError exception [Michael Hartl]
file INSTALL Mon Apr 07 11:43:24 -0700 2008 Moved INSTALL to the README file for GitHub's p... [Michael Hartl]
file LICENSE Thu Apr 24 10:30:41 -0700 2008 Revert "Switched to the MIT license (for n... [Michael Hartl]
file README Fri Apr 25 12:17:51 -0700 2008 Added BlueCloth to vendor/gems [Michael Hartl]
file Rakefile Mon Feb 18 15:18:20 -0800 2008 init [Michael Hartl]
directory app/ Tue Oct 28 10:29:35 -0700 2008 Put common contacts behind login wall (bots wer... [Michael Hartl]
directory config/ Tue Oct 14 18:31:00 -0700 2008 Skipping the log_activity callback [Michael Hartl]
directory db/ Thu Oct 16 15:00:37 -0700 2008 Added explanatory note for model declaration [Michael Hartl]
directory doc/ Tue Jun 03 16:55:25 -0700 2008 First big check-in, with jRails, jQuery, tabbed... [William Lazar]
file init.rb Wed Feb 20 19:04:44 -0800 2008 Got new, index working for people [Michael Hartl]
directory lib/ Mon Sep 29 12:01:26 -0700 2008 Fixed sample data load [Michael Hartl]
directory log/ Sun Mar 02 10:04:28 -0800 2008 Added 1st cut of installation readme [Michael Hartl]
directory public/ Wed Oct 15 10:46:37 -0700 2008 Moved profile-showing JavaScript to a more mnem... [Michael Hartl]
directory script/ Fri Sep 26 10:54:01 -0700 2008 Moved the database creation to the install script [Michael Hartl]
directory spec/ Fri Oct 17 16:39:30 -0700 2008 Fixed blog interface with correct redirects to ... [Michael Hartl]
directory stories/ Mon Feb 18 19:55:09 -0800 2008 Added authentication [Michael Hartl]
directory vendor/ Mon Nov 10 11:35:22 -0800 2008 Updated to new find_mass_assignment plugin [Michael Hartl]
README
# Insoshi social software

First, join the Insoshi Google group at

http://groups.google.com/group/insoshi/subscribe

Then get started with Insoshi.  If you encounter problems, be sure to refer to the Insoshi wiki at 
http://docs.insoshi.com, which expands on some of the points here.

NOTE: We're currently working on updating our Trac wiki to reflect the Insoshi repository 
(http://github.com/insoshi/insoshi) hosted on GitHub (http://github.com)

## Get Git

The source code to Insoshi is hosted by Git, a version control system developed by Linus Torvalds to host the Linux 
kernel.  The first step is to install it from here:

http://git.or.cz/

Linux and Mac users should have no problems; Windows users might have to install Cygwin (http://cygwin.com/) first.

## Install libraries and gems

### Libraries

You'll need to install FreeImage, SQLite, and (optionally) MySQL.  Install instructions for all three are easy to find 
using Google.

### Gems

You probably have Rails already, but might not have the others.

$ sudo gem install rails
$ sudo gem install image_science
$ sudo gem install ferret
$ sudo gem install mysql
$ sudo gem install sqlite3-ruby

## Installing the app

Here are the steps to get up and running with the Insoshi Rails app.

### Git steps

The repository is large enough (mainly due to the frozen Rails gems) that it may take a while to finish the first step, 
which is to clone the repository:

$ git clone git://git.insoshi.com/insoshi.git

Then make a Git branch for yourself:

$ git checkout -b <firstname_lastname>

where you should replace <firstname_lastname> with your name (without angle brackets!).  

At some later point, follow the steps at

http://trac.insoshi.com/insoshi/wiki/ContributingBack

Also be sure to get in the habit of syncing with the main repository:

$ git add .
$ git commit -v
$ git checkout master
$ git pull
$ git checkout <firstname_lastname>
$ git rebase master

### Config files and tests

Now create the config files:

$ cp config/database.example config/database.yml
$ cp config/initializers/preferences.rb.example \
     config/initializers/preferences.rb

Installation itself is handled by a custom Rake task:     

$ rake install

Then run the tests (which are actually RSpec examples in the spec/ directory):

$ rake db:test:prepare
$ rake spec

(If the tests fail in the Photos controller test, double-check that FreeImage and ImageScience are installed.)

The migration creates an admin user with password "admin".

### Loading sample data

Now load the sample data and start the server:

$ rake db:sample_data:reload
$ script/server

The rake task loads sample data to make developing easier.  All the sample users have email logins <name>@example.com, 
with password foobar.  

Go to http://localhost:3000 and log in as follows:

email: michael@example.com
password: foobar

Now open the source code with your favorite editor and start hacking!

## Stat tracker

Note that there is a minimalist stat tracker that lets us keep track of how many different installs of Isoshi are out 
there.  We don't collect any personal information, but if you don't want to be tracked just open application.html.erb 
and comment out the line after this one:

<%# A tracker to tell us about the activity of Insoshi installs %>

## License

See the file LICENSE.