summaryrefslogtreecommitdiff
path: root/launch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'launch.sh')
-rwxr-xr-xlaunch.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/launch.sh b/launch.sh
new file mode 100755
index 0000000..795db47
--- /dev/null
+++ b/launch.sh
@@ -0,0 +1,15 @@
1#!/bin/sh
2# SPDX-License-Identifier: EUPL-1.2
3# SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com>
4
5set -eu
6
7# Note this still has the debugger and such things enabled, at this point it makes life easier for me :). For a more
8# hands-off auto-restarting approach, consider disabling all the fancy SBCL things (similar to ./run_tests.sh) and
9# putting it in a shell while true loop.
10
11exec sbcl \
12 --eval '(asdf:load-system :ukkoclot)' \
13 --eval '(log:config :debug :sane2)' \
14 --eval '(setf ukkoclot::*in-prod* t)' \
15 --eval '(ukkoclot:main)'