forked from tryzealot/zealot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mise.toml
More file actions
35 lines (27 loc) · 857 Bytes
/
.mise.toml
File metadata and controls
35 lines (27 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tools]
ruby="3.3.8"
nodejs="22.15.1"
[tasks.web]
description = "Running Rails server"
run = "bin/rails server -p 3000 -b 0.0.0.0"
[tasks.debug_web]
description = "Running Rails server"
run = "bundle exec rdbg -O -n -c -- bin/rails server -p 3000"
[tasks.worker]
description = "Running Background worker"
run = "bin/good_job start 2>&1 | tee -a log/worker.log"
[tasks.js]
description = "Running Javascript compiler server"
run = "yarn build --watch"
[tasks.css]
description = "Running CSS compiler watcher"
run = "yarn build:css --watch"
[tasks.dev]
description = "Start all server"
depends = ["js", "css", "web", "worker"]
[tasks.debug]
description = "Start all server (web debug mode)"
depends = ["js", "css", "debug_web", "worker"]
[tasks.caddy]
description = "Running Caddy server"
run = "caddy run --watch --config docker/rootfs/etc/Caddyfile"