Skip to content

z4ppy/notable_web

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notable Web

A web interface for Notable

Screenshot, demo, and better UI coming soon

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

will_paginate

If using will_paginate, create an initializer config/initializers/kaminari.rb with:

Kaminari.configure do |config|
  config.page_method_name = :per_page_kaminari
end

to avoid conflicts.

TODO

  • demo
  • better design

Contributing

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

About

A web interface for Notable

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 59.4%
  • Ruby 40.6%