mix sleeky.new (sleeky_new v0.0.1)
Creates a new Sleeky project.
It expects the path of the project as argument.
mix sleeky.new PATH [--app APP] [--module MODULE]
A project at the given PATH will be created. The
application name and module name will be retrieved
from the path, unless --module
or --app
is given.
An --app
option can be given in order to
name the OTP application for the project.
A --module
option can be given in order
to name the modules in the generated code skeleton.
Examples
mix sleeky.new hello_world
Is equivalent to:
mix sleeky.new hello_world --module HelloWorld