blob: 08c74f9575bde63ff8542c547411cc9044b58fb9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
#
# run with options '-- ./webserver.scm 8091' e.g.
# . .guix-shell -- guile -L .. --fresh-auto-compile --listen=1970 -e main ./webserver.scm 8091
echo "Create a shell to run tools. In the container"
echo "mkdir /usr/bin -p"
echo "ln -s \$GUIX_ENVIRONMENT/bin/env /usr/bin/env"
guix shell -C -F --network coreutils guile guile-dbi guile-dbd-mysql guile-fibers guile-json guile-gnutls guile-readline guile-redis openssl nss-certs $*
|