Setup an environment with the file server.env containing following the same structure of server.env.example
I will be creating a user "postgres" and a database "mococa_api_v2"
Login to database with user postgres
psql -U postgresCreate a database called mococa_api_v2
CREATE DATABASE mococa_api_v2;Select the database you just created
\c mococa_api_v2;Add the UUID extension
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";Exit psql
\qShould be good enough to set it up properly