diff options
author | Pjotr Prins | 2024-06-23 05:33:05 -0500 |
---|---|---|
committer | Pjotr Prins | 2024-06-23 05:33:13 -0500 |
commit | 8efa6408c93879b5249361c3a41aad4405e7e303 (patch) | |
tree | eba46b983b2d70480e088d4c3a792bbac6d37a07 | |
parent | 67ac02bbcc78cdcb4f3695918b35ccac58fa36f7 (diff) | |
download | gn-gemtext-8efa6408c93879b5249361c3a41aad4405e7e303.tar.gz |
Genecup development environment
-rw-r--r-- | topics/deploy/genecup.gmi | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/topics/deploy/genecup.gmi b/topics/deploy/genecup.gmi index 2054844..c5aec17 100644 --- a/topics/deploy/genecup.gmi +++ b/topics/deploy/genecup.gmi @@ -1,5 +1,17 @@ # Deploying genecup +# Hosting + +The source repo has moved to + +=> https://git.genenetwork.org/genecup/ + +If you have ssh access you can push to the repo with + +=> yourname@git.genenetwork.org:/home/git/public/genecup + +# Deploy on tux02 + On Tux02 as shepherd user I can build: ``` @@ -28,3 +40,16 @@ That means you can also develop software running in a container with the last co cd $repo run last command using guix shell ``` + +The only problem, at this point, is that python is not in the path. + +The alternative is to use a guix shell, as described in the README.md + +=> https://git.genenetwork.org/genecup/tree/README.md + +and port forward: + +``` +ssh -L 4200:127.0.0.1:4200 -f -N server +curl localhost:4200 +``` |