aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPjotr Prins2025-07-16 09:52:34 +0200
committerPjotr Prins2025-07-16 09:52:34 +0200
commit7477f9af79f6a6ee17d3bc1e6e138bd0c1c5f8c0 (patch)
tree196724edff5ab8e382cf3ce0d8196c115b32743f
parente7f7de7388675c9f663b2a6e45ade426f7707e42 (diff)
downloadgn-guile-7477f9af79f6a6ee17d3bc1e6e138bd0c1c5f8c0.tar.gz
README: Add path to guix-bioinformatics repo
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index c9b7bc2..fb91da5 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@ git clone tux02.genenetwork.org:/home/git/public/gn-guile
GNU Guile allows you to develop against a live running web server using emacs-geiser. To try this fire up the web server from the `web` directory as
```sh
-guix shell --container --network --file=guix.scm -- guile -L . --fresh-auto-compile --listen=1970 -e main web/webserver.scm 8091
+guix shell -L ~/guix-bioinformatics --container --network --file=guix.scm -- guile -L . --fresh-auto-compile --listen=1970 -e main web/webserver.scm 8091
```
By default the root points to the API:
@@ -42,7 +42,7 @@ curl http://127.0.0.1:8091/home/aging
The `--container` option runs the code in an isolated container, and the `--network` option connects that container's networking to the host to allow you to access the running service.
-If you get an error `no code for module (gn packages guile)` add the guix-bioinformatics repo to the load path (`-L` switch).
+If you get an error `no code for module (gn packages guile)` add the appropriate guix-bioinformatics repo to the load path (`-L` switch).
## Welcome to the world of interactive Lisp programming