mirror of https://github.com/status-im/codimd.git
10 lines
96 B
Bash
10 lines
96 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
pcheck -constr "$CMD_DB_URL"
|
||
|
|
||
|
sequelize db:migrate
|
||
|
|
||
|
node app.js
|