summaryrefslogtreecommitdiff
path: root/leap_ca.rb
diff options
context:
space:
mode:
Diffstat (limited to 'leap_ca.rb')
-rw-r--r--leap_ca.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/leap_ca.rb b/leap_ca.rb
index a2a1d37..26f3b03 100644
--- a/leap_ca.rb
+++ b/leap_ca.rb
@@ -2,15 +2,15 @@
require 'rubygems'
require 'yajl/http_stream'
+require 'lib/config'
require 'lib/couch_stream'
require 'lib/couch_changes'
-# TODO: read the connection from a config
-SERVER = "http://localhost:5984"
-DATABASE = "salticidae_certs"
def main
- couch = CouchStream.new(SERVER, DATABASE)
+ config = LeapCA::Config.new(File.expand_path("../config.yml", __FILE__))
+ p "Tracking #{config.database} on #{config.server}"
+ couch = CouchStream.new(config)
changes = CouchChanges.new(couch)
changes.follow do |hash|
p hash