Files
77th_eventcalenderntfy/entrypoint.sh
chikovanreuden 2fb5f48a54 inital commit
2025-10-20 02:05:08 +02:00

6 lines
200 B
Bash

#!/bin/bash
crontab -l > mycron
echo "0 8 * * * bun run ./app/app.ts --today > /dev/null 2>&1" >> mycron
echo "0 * * * * bun run ./app/app.ts --all > /dev/null 2>&1" >> mycron
crontab mycron
rm mycron