File tree Expand file tree Collapse file tree 4 files changed +1039
-1020
lines changed Expand file tree Collapse file tree 4 files changed +1039
-1020
lines changed Original file line number Diff line number Diff line change 19
19
"description" : " Let npm also install development build tool" ,
20
20
"value" : " false"
21
21
},
22
- "DB_TYPE" : {
23
- "description" : " Specify database type. See sequelize available databases. Default using postgres" ,
24
- "value" : " postgres"
25
- },
26
22
"HMD_SESSION_SECRET" : {
27
23
"description" : " Secret used to secure session cookies." ,
28
24
"required" : false
Original file line number Diff line number Diff line change @@ -11,8 +11,7 @@ module.exports = {
11
11
'config': path.resolve('config.json'),
12
12
'migrations-path': path.resolve('lib', 'migrations'),
13
13
'models-path': path.resolve('lib', 'models'),
14
- 'url': process.env.DATABASE_URL,
15
- 'dialect': process.env.DB_TYPE
14
+ 'url': process.env.DATABASE_URL
16
15
}
17
16
18
17
EOF
26
25
27
26
EOF
28
27
29
- # build app
30
- npm run build
31
28
fi
Original file line number Diff line number Diff line change 26
26
"coverage" : " nyc mocha --require intelli-espower-loader --exit --recursive ./test" ,
27
27
"coverage:ci" : " nyc mocha --no-color -R dot --require intelli-espower-loader --exit --recursive ./test" ,
28
28
"test" : " npm run-script lint && npm run-script jsonlint && npm run-script coverage" ,
29
- "test:ci" : " npm run-script lint && npm run-script jsonlint && npm run-script coverage:ci"
29
+ "test:ci" : " npm run-script lint && npm run-script jsonlint && npm run-script coverage:ci" ,
30
+ "postinstall" : " bin/heroku"
30
31
},
31
32
"dependencies" : {
32
33
"@hackmd/codemirror" : " ~5.46.2" ,
193
194
"utf-8-validate" : " ~5.0.1"
194
195
},
195
196
"engines" : {
196
- "node" : " >=8.0.0"
197
+ "node" : " >=8.0.0 <12.0.0 "
197
198
},
198
199
"maintainers" : [
199
200
{
You can’t perform that action at this time.
0 commit comments