[NAME]
- The name of the new application (note that this is simply a directory name and cannot be a path such as apps/my-new-app
).--git
, --no-git
, (Default: True)git init
(to initialize a Git repository) inside the new application directory.--bundle
, --no-bundle
, (Default: True)bundle install
(to install dependencies) inside the new application directory.--silence
alias -s
, (Default: False)git init
and bundle install
commands (only silences if either the --git
or --bundle
options are active)--blog
alias -b
, (Default: False)--route
alias -r
, (Default: "blog")--blog
option is active).$ eucalypt init my-new-app
$ eucalypt init my-new-app -s
bundle install
and git init
commands.$ eucalypt init my-new-app --no-bundle --no-git
bundle install
) and Git repository initialization (git init
).$ eucalypt init my-new-app -b
$ eucalypt init my-new-app -br posts
/posts
.