Elixir

Mix

This is to create a new project.

https://hexdocs.pm/elixir/introduction-to-mix.html

Creating a project called kv.

mix new kv --module KV
  • The --module specifies that the main module should be called KV instead of the default Kv

Installing dependencies

mix deps.get

Migrations with Ecto

mix ecto.migrate