Run these commands in order to build application and create database
mix do deps.get, deps.compile, compile
mix ecto.createMake sure PostGIS extension to the database is installed.
psql mini_repo -c 'CREATE EXTENSION postgis;'
mix ecto.migrate
mix run --no-haltRun tests with mix test command