about summary refs log tree commit diff
path: root/specials/gndev.scm
diff options
context:
space:
mode:
Diffstat (limited to 'specials/gndev.scm')
-rw-r--r--specials/gndev.scm71
1 files changed, 71 insertions, 0 deletions
diff --git a/specials/gndev.scm b/specials/gndev.scm
new file mode 100644
index 0000000..440aedb
--- /dev/null
+++ b/specials/gndev.scm
@@ -0,0 +1,71 @@
+;;; genenetwork-machines --- Guix configuration for genenetwork machines
+;;; Copyright © 2022–2024 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2024 Pjotr Prins <pjotr.public01@thebird.nl>
+;;;
+;;; This file is part of genenetwork-machines.
+;;;
+;;; genenetwork-machines is free software: you can redistribute it
+;;; and/or modify it under the terms of the GNU General Public License
+;;; as published by the Free Software Foundation, either version 3 of
+;;; the License, or (at your option) any later version.
+;;;
+;;; genenetwork-machines is distributed in the hope that it will be
+;;; useful, but WITHOUT ANY WARRANTY; without even the implied
+;;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+;;; See the GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with genenetwork-machines.  If not, see
+;;; <https://www.gnu.org/licenses/>.
+
+(use-modules (gnu)
+             (genenetwork services genenetwork)
+             ((gnu packages admin) #:select (shepherd))
+             (gn services databases)
+             (gn packages genenetwork)
+             (gnu services databases)
+             (forge acme)
+             (forge nginx)
+             (forge socket))
+
+(operating-system
+  (host-name "gndev")
+  (timezone "UTC")
+  (locale "en_US.utf8")
+  (bootloader (bootloader-configuration
+               (bootloader grub-bootloader)
+               (targets (list "/dev/sdX"))))
+  (file-systems %base-file-systems)
+  (users %base-user-accounts)
+  (sudoers-file
+   (mixed-text-file "sudoers"
+                    "@include " %sudoers-specification
+                    "\nacme ALL = NOPASSWD: " (file-append shepherd "/bin/herd") " restart nginx\n"))
+  (packages %base-packages)
+  (services (cons* (service forge-nginx-service-type
+                            (forge-nginx-configuration
+                             (http-listen (forge-ip-socket
+                                           (ip "0.0.0.0")
+                                           (port 8990)))
+                             (https-listen (forge-ip-socket
+                                            (ip "0.0.0.0")
+                                            (port 8991)))))
+                   (service acme-service-type
+                            (acme-configuration
+                             (email "arunisaac@systemreboot.net")))
+                   (service genenetwork-service-type
+                            (genenetwork-configuration
+                             (genenetwork2 genenetwork2-stable)
+                             (genenetwork3 genenetwork3-stable)
+                             (server-name "gndev.genenetwork.org")
+                             (gn-auth-server-name "gndev-auth.genenetwork.org")
+                             (gn2-port 8992)
+                             (gn3-port 8993)
+                             (sql-uri "mysql://webqtlout:webqtlout@localhost/db_webqtl")
+                             (auth-db "/export2/data/gndev-sqlite/auth.db")
+                             (xapian-db "/export2/data/gndev-xapian")
+                             (genotype-files "/export/data/genenetwork/genotype_files")
+                             (sparql-endpoint "http://localhost:9092/sparql")
+                             (gn-sourcecode-directory "/export/source/gndev-debug")
+                             (gn3-data-directory "/export/data/genenetwork")))
+                   %base-services)))