...

/

The Application: Getting Started

The Application: Getting Started

Take a look at the basics of the application, what it does, 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.

-module(bookstore_app).
-behaviour(application).

%% Application callbacks
-export([start/2, stop/1]).

start(_StartType, _StartArgs) ->
   
...