mirror of
https://github.com/penpot/penpot.git
synced 2026-05-13 12:04:06 +00:00
27 lines
691 B
Clojure
27 lines
691 B
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) UXBOX Labs SL
|
|
|
|
(ns app.config
|
|
(:require
|
|
["process" :as process]
|
|
[cljs.pprint]
|
|
[cuerdas.core :as str]))
|
|
|
|
(defn- keywordize
|
|
[s]
|
|
(-> (str/kebab s)
|
|
(str/keyword)))
|
|
|
|
(defonce env
|
|
(let [env (unchecked-get process "env")]
|
|
(persistent!
|
|
(reduce #(assoc! %1 (keywordize %2) (unchecked-get env %2))
|
|
(transient {})
|
|
(js/Object.keys env)))))
|
|
|
|
(defonce config
|
|
{:public-uri (:penpot-public-uri env "http://localhost:3449")})
|