diff options
author | Pjotr Prins | 2024-03-25 11:52:49 +0100 |
---|---|---|
committer | Pjotr Prins | 2024-03-25 11:52:49 +0100 |
commit | 4c08ecd78136a634b6f830a984067baec922836a (patch) | |
tree | b62bf5fd2c1b96bede87bd80f86cb951e3ca7104 /topics | |
parent | 42b10471677ff75fa0c094cca117cb1341f69cae (diff) | |
download | gn-gemtext-4c08ecd78136a634b6f830a984067baec922836a.tar.gz |
Fallback: fixing problems
Diffstat (limited to 'topics')
-rw-r--r-- | topics/systems/debug-and-developing-code-with-genenetwork-system-container.gmi | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/topics/systems/debug-and-developing-code-with-genenetwork-system-container.gmi b/topics/systems/debug-and-developing-code-with-genenetwork-system-container.gmi index d7272eb..f10aa21 100644 --- a/topics/systems/debug-and-developing-code-with-genenetwork-system-container.gmi +++ b/topics/systems/debug-and-developing-code-with-genenetwork-system-container.gmi @@ -51,8 +51,6 @@ Now we can start GN3 properly. We can reuse the gunicorn setup above, but for de ``` /gnu/store/1gd9nsy4cps8fnrd1avkc9l01l7ywiai-guile-3.0.9/bin/guile --no-auto-compile /gnu/store/zm5cxkhy0gx6b7vyyr54dh99gk8zbncn-gunicorn-genenetwork3-pola-wrapper --workers 1 --timeout 1200 --bind 127.0.0.1:8893 --env GN3_CONF=/gnu/store/8lmjj0vv0616cgwy2dx56pg30rkvgsj0-gn3.conf --env GN3_SECRETS=/etc/genenetwork/gn3-secrets.py --env HOME=/tmp "gn3.app:create_app()" - - /gnu/store/1gd9nsy4cps8fnrd1avkc9l01l7ywiai-guile-3.0.9/bin/guile --no-auto-compile /gnu/store/zm5cxkhy0gx6b7vyyr54dh99gk8zbncn-gunicorn-genenetwork3-pola-wrapper --workers 20 --timeout 1200 --bind 127.0.0.1:8893 --env GN3_CONF=/gnu/store/8lmjj0vv0616cgwy2dx56pg30rkvgsj0-gn3.conf --env GN3_SECRETS=/etc/genenetwork/gn3-secrets.py --env HOME=/tmp gn3.app:create_app() ``` Note the added quotes. The command will fail with 'No module named gn3'. Good! Now to load the source dir we need to make it visible. We'll use $SOURCES for that. |