TheArtificer/artificer.rc

21 lines
415 B
Plaintext
Raw Normal View History

2022-07-07 17:07:28 -07:00
#!/bin/sh
2022-07-07 17:20:44 -07:00
# PROVIDE: artificer
2022-07-07 17:07:28 -07:00
. /etc/rc.subr
name="artificer"
rcvar="artificer_enable"
start_cmd="artificer_start"
2022-07-07 17:26:26 -07:00
pidfile="/var/dbots/TheArtificer/artificer.pid"
2022-07-07 17:07:28 -07:00
artificer_start()
{
cd /var/dbots/TheArtificer/
deno run --allow-write=./logs/,./src/endpoints/gets/heatmap.png --allow-read=./src/solver/,./src/endpoints/gets/heatmap-base.png --allow-net mod.ts
}
load_rc_config artificer
run_rc_command "$1"