...

/

The Application: Getting Started

The Application: Getting Started

Take a look at the basics of the application and the SQL queries that the application will be using.

We'll cover the following...

The application

The application just starts a standard supervisor without children. This is how it’s done.

defmodule Bookstore.App do
  use Application

  def start(_type, _args) do
    Bookstore.Sup.start_link()
  end

  def stop(_state) do
   
...