How to create a mix/Elixir project without Phoenix
In Elixir use mix to create projects, Phoenix is just an Elixir library. You can use mix new project_name
to generate a project and just not include Phoenix as a dependency. To run mix new
you need to have both mix and elixir installed and in your PATH.