aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--genenetwork-development.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm
index 528db38..913cfd3 100644
--- a/genenetwork-development.scm
+++ b/genenetwork-development.scm
@@ -589,7 +589,7 @@ server described by CONFIG, a <genenetwork-configuration> object."
"Return shepherd services to run the genenetwork development server
described by CONFIG, a <genenetwork-configuration> object."
(match-record config <genenetwork-configuration>
- (gn2-port gn3-port gn-auth-port genotype-files data-directory xapian-db-path gn2-secrets auth-db-path gn-auth-secrets)
+ (gn2-port gn3-port gn-auth-port genotype-files data-directory xapian-db-path gn2-secrets auth-db-path gn-auth-secrets llm-db-path)
(list (shepherd-service
(documentation "Run GeneNetwork 2 development server.")
(provision '(genenetwork2))
@@ -649,6 +649,10 @@ described by CONFIG, a <genenetwork-configuration> object."
(file-system-mapping
(source auth-db-path)
(target source)
+ (writable? #t))
+ (file-system-mapping
+ (source llm-db-path)
+ (target source)
(writable? #t)))
#:namespaces (delq 'net %namespaces))
"127.0.0.1" #$(number->string gn3-port))