This commit is contained in:
Seth Call 2014-12-20 14:05:31 -06:00
parent 9876c00a7a
commit 4a79f0c4ec
3 changed files with 9 additions and 0 deletions

View File

@ -85,6 +85,7 @@ gem 'htmlentities'
gem 'sanitize'
gem 'recurly'
gem 'guard', '2.7.3'
gem 'influxdb-rails'
group :development, :test do
gem 'rspec-rails', '2.14.2'

View File

@ -288,5 +288,12 @@ if defined?(Bundler)
config.recordings_stale_time = 3 # num days of inactivity before we decide that a recording is no longer going to be claimed
config.jam_tracks_available = false
# these values work out of the box with default settings of an influx install
config.influxdb_database = "development"
config.influxdb_username = "root"
config.influxdb_password = "root"
config.influxdb_hosts = ["localhost"]
config.influxdb_port = 8086
end
end

View File

@ -49,6 +49,7 @@ SampleApp::Application.configure do
# Set the logging destination(s)
config.log_to = %w[stdout file]
config.log_level = :debug
# Show the logging configuration on STDOUT
config.show_log_configuration = true