Add task scheduler

This commit is contained in:
2020-03-29 10:49:15 +03:00
commit 5c69dd6a90
21 changed files with 6881 additions and 0 deletions

16
tools/tsc Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
set -eu
source .env
docker run \
--rm \
--interactive \
--tty \
--init \
--user "$(id -u):$(id -g)" \
--volume "$PWD:/app" \
--workdir /app \
${NODE_IMAGE} \
./node_modules/.bin/tsc "$@"