dcrec1 / signal
- Source
- Commits
- Network (10)
- Issues (3)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Jan 18 10:57:33 -0800 2010 | |
| |
README.textile | Mon Nov 23 14:10:25 -0800 2009 | |
| |
Rakefile | Thu Oct 22 19:27:36 -0700 2009 | |
| |
app/ | Wed Jan 20 12:42:46 -0800 2010 | |
| |
config/ | Thu Jan 21 06:57:26 -0800 2010 | |
| |
db/ | Mon Jan 18 11:10:33 -0800 2010 | |
| |
doc/ | Tue Sep 15 18:26:59 -0700 2009 | |
| |
features/ | Mon Nov 02 16:21:46 -0800 2009 | |
| |
lib/ | Thu Oct 22 17:59:23 -0700 2009 | |
| |
public/ | Mon Oct 26 17:24:48 -0700 2009 | |
| |
script/ | Mon Sep 21 12:37:19 -0700 2009 | |
| |
spec/ | Mon Jan 18 11:44:01 -0800 2010 | |
| |
vendor/ | Tue Nov 10 13:18:47 -0800 2009 |
INSTALLATION:
1. Download the code:
git clone git://github.com/dcrec1/signal.git
If you are installing the application on a remote machine:
2. Copy config/deploy.rb.sample to config/deploy.rb
2.1 Configure config/deploy.rb
2.2 Setup the application in the remote host:
rake inploy:remote:setup
Or if you are installing the application in the local machine:
2. Setup the application
rake inploy:local:setup
3. Configure config/mailer.yml
4. Start a job:
RAILS_ENV=production script/delayed_job start
5. Startup the application in your favourite server (passenger recommended)
If you want to use somer other database than SQLite (recommended):
6. Configure config/database.yml
7. Re-initialize the database:
rake db:migrate RAILS_ENV=production
If you’re using Passenger on OS X, you may need edit the path:
http://www.icoretech.org/2009/08/passenger-mod_rails-path-on-leopard-snow-leopard/
UPDATE
From a remote machine:
rake inploy:remote:update
Or from the local machine:
rake inploy:local:update
2. Restart the server
PROJECTS
Every project you are importing needs to have a rake build task.
rake build
The task in your project should look something like this:
task: build => ['db:migrate', :spec, :cucumber, 'metrics:all']
USAGE
To fire a build from a script you can ping:
http://myserver/projects/id/build
where myserver is the location of your application and id the id of the project.
LICENSE:
(The MIT License)
Copyright © 2009
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
‘Software’), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
