-
-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathconfig.lisp
More file actions
14 lines (10 loc) · 647 Bytes
/
config.lisp
File metadata and controls
14 lines (10 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;;;; Basic system configuration used during cold-load.
(in-package :mezzano.internals)
;; This is the local IP address of the system running the file-server.
(defparameter *file-server-host-ip* "192.168.0.123")
;; The full path to the Mezzano source tree.
;; This must be a string, it must end with '/', and it must include a host portion.
(defparameter *mezzano-source-path* "REMOTE:/Full/path/to/Mezzano/")
;; The full path to the Mezzano home directory, containing the libraries.
;; This must be a string, it must end with '/', and it must include a host portion.
(defparameter *home-directory-path* "REMOTE:/Full/path/to/home/directory/")