Launchers from previous incarnation

This commit is contained in:
Tony Garnock-Jones 2021-06-10 16:45:40 +02:00
parent 247fd1b2c0
commit 6ea074948a
4 changed files with 17 additions and 10 deletions

View File

@ -1,6 +0,0 @@
;;; SPDX-License-Identifier: LGPL-3.0-or-later
;;; SPDX-FileCopyrightText: Copyright © 2010-2021 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
#lang racket
(module+ main
(dynamic-require '(submod syndicate/distributed main) #f))

View File

@ -1,12 +1,11 @@
;;; SPDX-License-Identifier: LGPL-3.0-or-later
;;; SPDX-FileCopyrightText: Copyright © 2010-2021 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
;;; SPDX-FileCopyrightText: Copyright © 2018-2021 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
#lang racket
(module+ main
(require racket/logging)
(with-logging-to-port (current-error-port)
(lambda ()
(dynamic-require '(submod syndicate/distributed main) #f))
'debug 'syndicate/distributed
'debug 'syndicate/federation
(dynamic-require '(submod syndicate/distributed/tcp-server main) #f))
'debug 'syndicate/relay
))

View File

@ -0,0 +1,6 @@
;;; SPDX-License-Identifier: LGPL-3.0-or-later
;;; SPDX-FileCopyrightText: Copyright © 2018-2021 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
#lang racket
(module+ main
(dynamic-require '(submod syndicate/distributed/tcp-server main) #f))

View File

@ -30,3 +30,11 @@
(define build-deps '("rackunit-lib"))
(define pre-install-collection "private/install.rkt")
(define racket-launcher-names
'("syndicate-server"
"syndicate-server-debug"))
(define racket-launcher-libraries
'("bin/syndicate-server.rkt"
"bin/syndicate-server-debug.rkt"))