aboutsummaryrefslogtreecommitdiff
path: root/gn3/settings.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-08-01 14:48:55 -0500
committerFrederick Muriuki Muriithi2024-08-01 14:59:23 -0500
commit2d1c546ac9f4707cb30d1a3dbfea6b80c5c2cc89 (patch)
tree0106f21af4f159df2dfccf79c8bf0abfbd3fdea4 /gn3/settings.py
parent4b2e9f3fb3383421d7a55df5399aab71e0cc3b4f (diff)
downloadgenenetwork3-2d1c546ac9f4707cb30d1a3dbfea6b80c5c2cc89.tar.gz
Add `gn3.oauth2` module to handle authorisations
Add the `gn3.oauth2` which will handle the authorisations. It is intended to eventually replace the `gn3.auth` module which is a left over from when the authorisation server was part of GN3.
Diffstat (limited to 'gn3/settings.py')
-rw-r--r--gn3/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/settings.py b/gn3/settings.py
index 13a2976..1e794ff 100644
--- a/gn3/settings.py
+++ b/gn3/settings.py
@@ -85,7 +85,7 @@ ROUND_TO = 10
MULTIPROCESSOR_PROCS = 6 # Number of processes to spawn
-AUTH_SERVER_URL = ""
+AUTH_SERVER_URL = "https://auth.genenetwork.org"
AUTH_MIGRATIONS = "migrations/auth"
AUTH_DB = os.environ.get(
"AUTH_DB", f"{os.environ.get('HOME')}/genenetwork/gn3_files/db/auth.db")