This app is built with Phoenix Framework.
$ mix deps.get
Before starting the server, you need to start all external dependencies, create the database and run migrations:
# start dependencies
$ docker-compose up -d
# create database
$ mix ecto.create
# run migrations
$ mix ecto.migrate
And then you just need to start the server with one of the two commands below:
# start server in development
$ mix phx.server
# start server in development with a interactive shell
$ iex -S mix phx.server
# run all tests and checks
$ mix check