#!/bin/bash

set -e

cat << EOF > config.json

{
  "production": {
    "db": {
      "dialect": "postgres",
      "protocol": "postgres",
      "dialectOptions": {
        "ssl": {
           "require": true,
           "rejectUnauthorized": false
        }
      }
    }
  }
}

EOF