Compare commits

...

2 Commits

Author SHA1 Message Date
TakeV e9ed901c92
Fix typo 2023-07-23 02:33:45 -07:00
TakeV 675e6d4130
Fix stray package 2023-07-23 02:31:06 -07:00
1 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@
(gotosocial
(package gotosocial)
"The gotosocial package to use")
(front-end
(frontend
(package gotosocial-frontend)
"The gotosocial web asset package to use")
(config-file
@ -50,10 +50,10 @@
(define (gotosocial-shepherd-service config)
(match-record config <gotosocial-configuration>
(gotosocial gotosocial-frontend config-file port work-dir run-dir host database-type database-address)
(gotosocial frontend config-file port work-dir run-dir host database-type database-address)
(let* ((gts (file-append gotosocial "/bin/gotosocial"))
(gts-frontend-assets (file-append gotosocial-frontend "/gotosocial/web/assets"))
(gts-frontend-templates (file-append gotosocial-frontend "/gotosocial/web/template"))
(gts-frontend-assets (file-append frontend "/gotosocial/web/assets"))
(gts-frontend-templates (file-append frontend "/gotosocial/web/template"))
(command `(,gts
"server" "start" "--syslog-enabled"
,(string-append "--port=" (number->string port))