14 lines
734 B
Scheme
14 lines
734 B
Scheme
(module config mzscheme
|
|
|
|
(require "private/planet-shared.ss")
|
|
|
|
(define-parameters (PLANET-SERVER-NAME "planet.plt-scheme.org")
|
|
(PLANET-SERVER-PORT 270)
|
|
(PLANET-CODE-VERSION "300")
|
|
(PLANET-DIR (build-path (find-system-path 'addon-dir) "planet" (PLANET-CODE-VERSION)))
|
|
(CACHE-DIR (build-path (PLANET-DIR) "cache"))
|
|
(LINKAGE-FILE (build-path (PLANET-DIR) "LINKAGE"))
|
|
(LOGGING-ENABLED? #t)
|
|
(LOG-FILE (build-path (PLANET-DIR) "INSTALL-LOG"))
|
|
(DEFAULT-PACKAGE-LANGUAGE (version))))
|