summaryrefslogtreecommitdiff
path: root/bin/heroku
blob: 2bb49fbe9f79f342695ee1542794cb8393567442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

set -e

cat << EOF > config.json

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

EOF