Create a New Project

Learn how to create a new project.

Creating a new Elixir application

The first step is to create a new Elixir application with the mix tool. A new application needs a lot of boilerplate, but mix new does all the heavy lifting for us.

widget

Note that we added the --sup flag to mix new. This is because Ecto does all of its work in separate OTP processes. ...