19 lines
522 B
Bash
19 lines
522 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Exit on error. Append "|| true" if you expect an error.
|
|
set -o errexit
|
|
# Exit on error inside any functions or subshells.
|
|
set -o errtrace
|
|
# Do not allow use of undefined vars. Use ${VAR:-} to use an undefined VAR
|
|
set -o nounset
|
|
# Catch the error in case mysqldump fails (but gzip succeeds) in `mysqldump |gzip`
|
|
set -o pipefail
|
|
# Turn on traces, useful while debugging but commented out by default
|
|
# set -o xtrace
|
|
|
|
# Turn on bash's job control
|
|
set -m
|
|
|
|
__APP_PATH="${MS_HOME:-/app}"
|
|
|
|
node dist/main.js |