You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
229 B

(ns blog.env)
(defn get-port
"Gets the environment variable PORT. If no variable, then the default port is 3000. Server will listen requests on this port."
[]
(or (-> (.-env js/process)
(.-PORT))
"3000"))