Develop Elixir Phoenix apps in VS Code with a Debian based development container
Create a new application by running the following commands:
mix phx.new . --app hello --database sqlite3
mix ecto.create
mix phx.server
Stop the server by hitting ctrl-c
twice.