You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/config/cfg.rb

42 lines
1.4 KiB
Ruby

module Asciinema
class Configuration
include Virtus.model
attribute :bugsnag_api_key, String
attribute :aws_access_key_id, String
attribute :aws_bucket, String
attribute :aws_region, String
attribute :aws_secret_access_key, String
attribute :carrierwave_storage, String, default: 'file'
attribute :carrierwave_storage_dir_prefix, String, default: 'uploads/'
attribute :google_analytics_id, String
attribute :home_asciicast_id, Integer
attribute :scheme, String, default: 'http'
attribute :host, String, default: 'localhost:3000'
attribute :secret_key_base, String
10 years ago
attribute :admin_ids, Array[Integer]
attribute :smtp_settings, Hash
attribute :from_email, String, default: "asciinema <hello@asciinema.org>"
def home_asciicast
if home_asciicast_id
Asciicast.find(home_asciicast_id)
else
Asciicast.non_private.order(:id).first
end
end
def ssl?
scheme == 'https'
end
end
end
cfg_file = File.expand_path(File.dirname(__FILE__) + '/asciinema.yml')
cfg = YAML.load_file(cfg_file) || {} rescue {}
env = Hash[ENV.to_h.map { |k, v| [k.downcase, v] }]
cfg.merge!(env)
::CFG = Asciinema::Configuration.new(cfg)