Add Procfile - warvox - VoIP based wardialing tool, forked from rapid7/warvox.
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit 43aba5ccd5da5fea1bce56ad9312cacbf68dfe83
(DIR) parent 61c56f8da5251e19a445243ef1ce6ca1bbe09b7a
(HTM) Author: HD Moore <hd_moore@rapid7.com>
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(-)
---
(DIR) 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
(DIR) diff --git a/Procfile b/Procfile
@@ -0,0 +1,2 @@
+bundle: exec rails server -p $PORT
+worker: bundle exec rake jobs:work