Files
automatisch/docker/entrypoint-cloud.sh

12 lines
107 B
Bash
Executable File

#!/bin/sh
set -e
cd packages/backend
if [ -n "$WORKER" ]; then
yarn start:worker
else
yarn start
fi