diff options
| author | 2025-10-19 09:02:59 +0300 | |
|---|---|---|
| committer | 2025-10-19 09:02:59 +0300 | |
| commit | a5a5b69d3b96aa890909068e45c443460d52a697 (patch) | |
| tree | 8a5ac7fa7752b9008f23b216729bfbc2f2435ad8 /launch.sh | |
| parent | Make state be a global special variable (diff) | |
| download | ukkoclot-a5a5b69d3b96aa890909068e45c443460d52a697.tar.gz ukkoclot-a5a5b69d3b96aa890909068e45c443460d52a697.tar.xz ukkoclot-a5a5b69d3b96aa890909068e45c443460d52a697.zip | |
Work on launching scripts a bit
Diffstat (limited to 'launch.sh')
| -rwxr-xr-x | launch.sh | 15 |
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 | |||
| 5 | set -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 | |||
| 11 | exec sbcl \ | ||
| 12 | --eval '(asdf:load-system :ukkoclot)' \ | ||
| 13 | --eval '(log:config :debug :sane2)' \ | ||
| 14 | --eval '(setf ukkoclot::*in-prod* t)' \ | ||
| 15 | --eval '(ukkoclot:main)' | ||