summaryrefslogtreecommitdiff
path: root/topics
diff options
context:
space:
mode:
authorPjotr Prins2022-12-14 08:43:25 -0600
committerPjotr Prins2022-12-14 08:43:25 -0600
commitf450c3790953935631c0db27ea5879e76d100c83 (patch)
tree70bd9d9d32ca7839a3c55e094c20646f8b0f5f9e /topics
parent1002d7a5b2a4f579fc42ccab53e954d68f6ddb19 (diff)
downloadgn-gemtext-f450c3790953935631c0db27ea5879e76d100c83.tar.gz
Starting up services
Diffstat (limited to 'topics')
-rw-r--r--topics/starting_gn2_and_gn3.gmi15
1 files changed, 14 insertions, 1 deletions
diff --git a/topics/starting_gn2_and_gn3.gmi b/topics/starting_gn2_and_gn3.gmi
index 0a28861..d0065e4 100644
--- a/topics/starting_gn2_and_gn3.gmi
+++ b/topics/starting_gn2_and_gn3.gmi
@@ -1,20 +1,33 @@
# How to Start GN2 and GN3
+This document describes how we run GN2 and GN3 on the current production setup.
+
This details how GN2/GN3 production are currently started. It's probably a good idea to create a shell script for starting GN3 like we have for GN2 at some point, since currently environment variables are set manually.
+See also
+
+=> systems/gn-services.gmi
+
# GN3
+GN2 depends on GN3 for REST services and libraries.
+
1. Set PATH/PYTHONPATH/GN2_PROFILE environment variables
Example:
+
+```
export GN2_PROFILE=/home/zas1024/opt/gn-latest-20221206
export PATH=$GN2_PROFILE/bin:$PATH
export PYTHONPATH="$GN2_PROFILE/lib/python3.9/site-packages"
+```
2. Start GN3 from the relevant directory (in this case production
+
+```
env FLASK_DEBUG=1 FLASK_APP="main.py" CORS_ORIGINS="http://gn2-zach.genenetwork.org:*,https://gn2-zach.genenetwork.org:*,http://genenetwork.org:*,https://genenetwork.org:*" flask run --port=8081
+```
# GN2
1. Just run /home/gn2/production/run_production.sh
-