An unofficial, mostly Bitwarden-compatible API server written in Ruby (Sinatra and ActiveRecord)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

app: don't set database_file, we do this manually in lib/db.rb

Setting this causes sinatra-activerecord to do some configuration of
its own which ends up trying to look at RACK_ENV which we aren't
using anymore.

-1
-1
lib/app.rb
··· 31 31 register Sinatra::ActiveRecordExtension 32 32 33 33 set :root, File.dirname(__FILE__) 34 - set :database_file, "../db/config.yml" 35 34 36 35 configure do 37 36 enable :logging