summaryrefslogtreecommitdiff
path: root/app.json
blob: 2ed969350264385285c8ea7bd0ec7b1d878f866e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "name": "HackMD",
  "description": "Realtime collaborative markdown notes on all platforms",
  "keywords": [
    "Collaborative",
    "Markdown",
    "Notes"
  ],
  "website": "https://hackmd.io",
  "repository": "https://github.com/hackmdio/hackmd",
  "logo": "https://github.com/hackmdio/hackmd/raw/master/public/hackmd-icon-1024.png",
  "success_url": "/",
  "scripts": {
    "postdeploy": "./node_modules/.bin/sequelize db:migrate"
  },
  "env": {
    "BUILD_ASSETS": {
      "description": "Our build script variable",
      "value": "true"
    },
    "NPM_CONFIG_PRODUCTION": {
      "description": "Let npm also install development build tool",
      "value": "false"
    },
    "DB_TYPE": {
      "description": "Specify database type. See sequelize available databases. Default using postgres",
      "value": "postgres"
    }
  },
  "addons": [
    "heroku-postgresql"
  ]
}