| Add Procfile - warvox - VoIP based wardialing tool, forked from rapid7/warvox. | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit 43aba5ccd5da5fea1bce56ad9312cacbf68dfe83 | |
| parent 61c56f8da5251e19a445243ef1ce6ca1bbe09b7a | |
| Author: HD Moore <[email protected]> | |
| Date: Wed, 26 Dec 2012 19:49:14 -0600 | |
| Add Procfile | |
| Diffstat: | |
| M Gemfile | 6 ++---- | |
| A Procfile | 2 ++ | |
| 2 files changed, 4 insertions(+), 4 deletions(-) | |
| --- | |
| diff --git a/Gemfile b/Gemfile | |
| @@ -2,16 +2,14 @@ source 'http://rubygems.org' | |
| ruby '1.9.3' | |
| -gem 'heroku' | |
| - | |
| gem 'rails', '3.2.8' | |
| - | |
| gem 'pg', '0.11' | |
| gem 'kissfft' | |
| - | |
| gem 'librex' | |
| +gem 'delayed_job_active_record' | |
| + | |
| # Gems used only for assets and not required | |
| # in production environments by default. | |
| group :assets do | |
| diff --git a/Procfile b/Procfile | |
| @@ -0,0 +1,2 @@ | |
| +bundle: exec rails server -p $PORT | |
| +worker: bundle exec rake jobs:work |