W3cubDocs

/Phoenix

mix phx.new.ecto

Creates a new Ecto project within an umbrella project.

This task is intended to create a bare Ecto project without web integration, which serves as a core application of your domain for web applications and your greater umbrella platform to integrate with.

It expects the name of the project as an argument.

$ cd my_umbrella/apps
$ mix phx.new.ecto APP [--module MODULE] [--app APP]

A project at the given APP directory will be created. The application name and module name will be retrieved from the application name, unless --module or --app is given.

Options

Examples

mix phx.new.ecto hello_ecto

Is equivalent to:

mix phx.new.ecto hello_ecto --module HelloEcto

Summary

Functions

run(args)

Callback implementation for Mix.Task.run/1.

Functions

run(args)

Callback implementation for Mix.Task.run/1.

© 2014 Chris McCord
Licensed under the MIT License.
https://hexdocs.pm/phoenix/Mix.Tasks.Phx.New.Ecto.html