kollagen/Makefile

15 lines
343 B
Makefile
Raw Normal View History

2021-09-19 10:31:34 +02:00
all: deno_lint deno app docker
deno_lint:
cd cli && deno lint
2021-09-19 11:30:28 +02:00
deno: ./kollagen
./kollagen:
2021-09-19 09:48:25 +02:00
cd cli && deno compile --import-map ./import_map.json --allow-read --allow-write --unstable -o ../kollagen main.ts
app:
2021-09-19 10:31:34 +02:00
npm ci --cache .npm --prefer-offline && npm run build
2021-09-19 11:30:28 +02:00
docker: ./kollagen
2021-09-19 10:31:34 +02:00
docker build -t kollagen-bot -f tgbot/Dockerfile .