public
Description: Social Group Chat
Homepage: http://echowaves.com/conversations/1
Clone URL: git://github.com/dmitryame/echowaves.git
name age message
file .autotest Loading commit data...
file .gitignore Tue Dec 09 15:49:32 -0800 2008 added to gitignore [D]
file Capfile Tue Sep 30 13:38:34 -0700 2008 capifying [dmitryame]
file LICENSE Mon Nov 10 09:36:45 -0800 2008 MIT license added [crossblaim]
file README Tue Dec 02 19:17:48 -0800 2008 Merge branch 'master' of git@github.com:dmitrya... [D]
file Rakefile Tue Sep 30 12:36:05 -0700 2008 initial revision [dmitryame]
directory app/
directory assets/ Wed Nov 26 12:41:49 -0800 2008 Add icon for fluid app (please someone make a b... [crossblaim]
directory config/
directory db/
directory doc/ Tue Sep 30 12:36:05 -0700 2008 initial revision [dmitryame]
directory lib/ Mon Dec 01 07:16:16 -0800 2008 added rcov rake tasks * still not working corr... [cpjolicoeur]
directory log/ Fri Nov 14 14:22:06 -0800 2008 added log folder to git [dmitryame]
directory public/
directory script/ Tue Sep 30 13:38:34 -0700 2008 capifying [dmitryame]
directory test/
directory vendor/
README
The echowaves.com is a YACT -- Yet Another Collaboration Tool. Why one more? After all we already have http://meebo.com 
and http://campfire.com and many other like http://facebook.com and such. They all are great, but... none of them fits 
our needs 100%, and none of them is open-source.

Basically this tool could be an important addition to an agile team, specially to a geographically distributed one. We 
all know the importance of communication which could be difficult if people are not in the same room, or when someone 
walks out for few minutes...

If you'd like to contribute, perhaps start by picking a task from the issues list at:
http://code.google.com/p/echowaves/issues/list



=== INSTALL (localhost)
copy config/database.yml-sample to config/database.yml and modify to taste (see below for some hints on different 
platforms)
rake gems:install                         # automatically installs gems referenced in config/environment.rb
rake db:create                            # creates the development database
rake db:migrate                           # creates tables in dev DB

rake thinking_sphinx:configure            # Generate the Sphinx configuration file using Thinking Sphinx's settings
                                          # this will generate config/development.sphinx.conf, modify for your setup
                                          

=== SERVER SIDE COMPONENT INSTALL
* install python
sudo apt-get install python2.5-dev
sudo apt-get install python2.5-twisted


* install orbited http://orbited.org/wiki/Installation
easy_install orbited
* install simplejson
easy_install simplejson
* copy orbited config file
cp config/orbited.cfg /etc/

* install stomp gem
sudo gem install stomp
(stomp gem will be prompted for by the entry in config/environment.rb)

* update gem sources
gem sources -a http://gems.github.com

* install ImageMagick
You can install it quite easily via apt, yum, or port, or the package manager of your choice.

* install sphinx
http://sphinxsearch.com/

=== POST INSTALL
* Index data for Sphinx using Thinking Sphinx's settings (this rake task will create the settings file at 
#{RAILS_ROOT}/configuration/development.sphinx.conf)
rake thinking_sphinx:index

You will see a warning like the following – it’s safe to ignore, it’s just Sphinx being overly fussy. It tries to index 
all indexes, including distributed ones – which never need to be indexed, so it’s nothing to worry about:
"distributed index 'article' can not be directly indexed; skipping."

* Start a Sphinx searchd daemon using Thinking Sphinx's settings
rake thinking_sphinx:start
      
Also – you can run the index task while Sphinx is running, and it’ll reload the indexes automatically. Prior to 0.9.
9 though, Sphinx doesn’t reload the configuration file, so if you’ve changed your index structure or other Sphinx sett
ings, you will need to stop and start it for those changes to take effect.

* setup a cron tab to run "rake thinking_sphinx:index" periodically or do it manually when you need it

===

SignUp as a new user. Activate the user by copy-pasting the activation URL from the debug log into the address field of 
your browser and hit enter. 

To actually get the actionmailer stuff sent, you'll need to change the SMTP settings in config/environment.rb
In that case, you'll probably want to comment out the (currently last) line in config/environments/development.rb that 
reads "config.action_mailer.raise_delivery_errors = false", so that actionmailer failures are more visible.

=== REPORTING ISSUES
If you find an issue or would like to make a suggestion on what functionality you would like to see in echowaves, you 
can do it at http://code.google.com/p/echowaves/issues

=======

Specific advice for different platforms and setups
--------------------------------------------------
WINDOWS
-------
To use this with MySQL, you will probably need to uncomment the lines in the database.yml file that say "Host: 
127.0.0.1".  The error when this isn't put in is *not* particularly helpful, so if you're having trouble, give it a try.


SQLITE3
-------
change the "adapter" lines to read "adapter: sqlite3"
make the database lines something like "database: db/development.sqlite3" and "database: db/test.sqlite3"