mix petal.new.web (petal_new v0.0.1) View Source
Creates a new Phoenix web project within an umbrella project.
It expects the name of the otp app as the first argument and for the command to be run inside your umbrella application's apps directory:
$ cd my_umbrella/apps
$ mix petal.new.web APP [--module MODULE] [--app APP]This task is intended to create a bare Phoenix project without database integration, which interfaces with your greater umbrella application(s).
Examples
mix petal.new.web hello_webIs equivalent to:
mix petal.new.web hello_web --module HelloWebSupports the same options as the petal.new task.
See Mix.Tasks.Petal.New for details.