Creating a Phoenix 1.6 application with asdf
Create a Phoenix 1.6 application with Elixir 1.12

I write about Elixir, Elm, Software Development, and eBook writing.
Search for a command to run...
Create a Phoenix 1.6 application with Elixir 1.12

I write about Elixir, Elm, Software Development, and eBook writing.
No comments yet. Be the first to comment.
This is my series about Deploying Elixir 1.12 and Phoenix 1.6 to production
Prepare a Phoenix 1.6 application for deployment with Elixir Releases
Approaches to edit LiveView forms that use live_file_input

Collect Elixir metrics, aggregate them with StatsD and visualize them with Graphite

A couple of weeks ago I presented my talk: Elixir, Kubernetes, and minikube in the Elixir Meetup #5 organized by the fine people on curiosum.com. This talk is based on chapter 4 of my book "Deploying Elixir: Advanced Topics". If you haven't gotten t...

Deploying Elixir clusters to Production using Kubernetes

A couple of weeks ago I was invited to talk on the Elixir Wizards podcast by Smartlogic. We talk about Elixir in polyglot environments (that is, where you have a lot of languages used at the same time), my beginnings in the software field, my books, ...

The easiest way to create a new Phoenix Framework application:
asdf plugin-add erlang
asdf plugin-add elixir
asdf install erlang 24.1.2
asdf global erlang 24.1.2
asdf install elixir 1.12.3-otp-24
asdf global elixir 1.12.3-otp-24
mix local.rebar --force
mix local.hex --force
mix archive.install hex phx_new 1.6.0 --force
mix phx.new saturn --install
cd saturn
mix ecto.create
mix phx.server
Open http://localhost:4000/dashboard

Done.
I'm Miguel Cobá. I write about Elixir, Elm, Software Development, and eBook writing.
Photo by Kyle Kempt on Unsplash