Notable Web

A web interface for Notable

Installation

Add this line to your application’s Gemfile:

gem 'notable_web'

And add it to your config/routes.rb.

mount NotableWeb::Engine, at: "notable"

Be sure to secure the dashboard in production.

Basic Authentication

Set the following variables in your environment or an initializer.

ENV["NOTABLE_USERNAME"] = "andrew"
ENV["NOTABLE_PASSWORD"] = "secret"

Devise

authenticate :user, lambda {|user| user.admin? } do
  mount NotableWeb::Engine, at: "notable"
end

Contributing

Everyone is encouraged to help improve this project. Here are a few ways you can help: