├── .gitignore ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── app.json ├── boodoo.rb ├── bots.rb ├── corpus └── .gitignore ├── defaults.env └── model └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | secret.env 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooDoo/ebooks_example/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooDoo/ebooks_example/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bundle exec ebooks start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooDoo/ebooks_example/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooDoo/ebooks_example/HEAD/app.json -------------------------------------------------------------------------------- /boodoo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooDoo/ebooks_example/HEAD/boodoo.rb -------------------------------------------------------------------------------- /bots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooDoo/ebooks_example/HEAD/bots.rb -------------------------------------------------------------------------------- /corpus/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /defaults.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooDoo/ebooks_example/HEAD/defaults.env -------------------------------------------------------------------------------- /model/.gitignore: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------