Read the port and data directory from environment variables, in preparation for deploying as a systemd unit to Whitby Change-Id: I066dced7b7926b6bdc77132d13a4da6c886b20e8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1338 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			Common Lisp
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			299 B
		
	
	
	
		
			Common Lisp
		
	
	
	
	
	
(defpackage #:klatre
 | 
						|
  (:documentation "Grab-bag utility library for Common Lisp")
 | 
						|
  (:use #:cl)
 | 
						|
  (:export
 | 
						|
   ;; Miscellanious utilities
 | 
						|
   #:comment #:posp
 | 
						|
 | 
						|
   ;; Sequence functions
 | 
						|
   #:chunk-list #:mapconcat
 | 
						|
 | 
						|
   ;; String handling
 | 
						|
   #:+dottime-format+ #:format-dottime
 | 
						|
   #:try-parse-integer))
 |