Micro-framework, application generator and CLI wrapped around the Sinatra DSL.
To install the CLI, run:
$ gem install eucalypt
Running the top-level eucalypt
command displays information about initializing a new application:
Initialize a new application with:
$ eucalypt init my-new-app
Once the setup is complete, make sure the required gems have been installed (without any errors).
Move into your new application's directory and run the top-level eucalypt
command to display a list of all available commands:
Full documentation can be found in the form of a GitBook, here.
Click here to see the structure of a generated application.
.
├── Gemfile
├── Gemfile.lock
├── Gumfile
├── Procfile
├── Rakefile
├── app
│ ├── assets
│ │ ├── fonts
│ │ ├── images
│ │ ├── scripts
│ │ │ └── application.js
│ │ └── stylesheets
│ │ └── application.scss
│ ├── controllers
│ ├── helpers
│ ├── models
│ ├── static
│ │ └── public
│ └── views
│ ├── index.erb
│ ├── layouts
│ │ └── main.erb
│ └── partials
├── app.rb
├── config
│ ├── assets.rb
│ ├── database.yml
│ ├── initializers
│ └── logging.rb
├── config.ru
├── logs
└── spec
├── controllers
├── helpers
├── models
└── spec_helper.rb
Type | Feature |
---|---|
Core/DSL | Sinatra |
CLI builder | Thor |
Web server | Thin |
ORM | ActiveRecord |
ORDBMS | PostgreSQL + SQLite3 |
Asset pipeline | Sprockets |
Templating engine | ERB |
Markdown processor | RDiscount |
Front matter parsing | FrontMatterParser |
HTML helpers | Hanami |
CSS preprocessing | SCSS |
JS compressing | Uglifier |
Logging | Lumberjack |
Specs | RSpec + Rack-Test + Shoulda-Matchers |
Edwin Onuonga ✉️ 🌍 |
Mo Tolba ✉️ 🌍 |
---|
Eucalypt © 2018-2020, Edwin Onuonga - Released under the MIT License.
Authored and maintained by Edwin Onuonga.
eonu.net · GitHub: @eonu · Email: ed@eonu.net