diff options
author | Munyoki Kilyungi | 2025-07-22 13:30:33 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-08-16 13:50:56 +0300 |
commit | c10fa48671fcbb5ed223d2799db2f52922632277 (patch) | |
tree | afec0a1141018568660230bc8d80f54d971f05c9 | |
parent | 54485e0a64bbb8767f95bc5c93bd43f14a75883f (diff) | |
download | gn-machines-c10fa48671fcbb5ed223d2799db2f52922632277.tar.gz |
Add GN_GUILE_SERVER_URL
-rw-r--r-- | genenetwork-development.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 5ad3520..1acc2b6 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -478,7 +478,7 @@ genenetwork3 source from the latest commit of @var{project}." "Return a G-expression that runs the latest genenetwork2 development server described by CONFIG, a <genenetwork-configuration> object." (match-record config <genenetwork-configuration> - (gn2-repository gn3-repository gn2-port gn3-port gn2-secrets genotype-files) + (gn2-repository gn3-repository gn2-port gn3-port gn2-secrets genotype-files gn-guile-port) (with-packages (list coreutils git-minimal gunicorn nss-certs) (with-imported-modules '((guix build utils)) #~(begin @@ -526,6 +526,10 @@ server described by CONFIG, a <genenetwork-configuration> object." (string-append "http://localhost:" (number->string gn3-port)) "\"\n" + "GN_GUILE_SERVER_URL=\"" + (string-append "http://localhost:" + (number->string gn-guile-port)) + "\"\n" "GN_SERVER_URL=\"https://cd.genenetwork.org/api3/\"\n" "AUTH_SERVER_URL=\"https://auth-cd.genenetwork.org/\"\n" "SQL_URI=\"mysql://webqtlout:webqtlout@localhost/db_webqtl?unix_socket=/run/mysqld/mysqld.sock\"\n" |