This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-08-02
Channels
- # beginners (118)
- # boot (73)
- # cider (2)
- # cljs-dev (65)
- # cljsrn (18)
- # clojure (49)
- # clojure-argentina (4)
- # clojure-italy (19)
- # clojure-portugal (1)
- # clojure-russia (1)
- # clojure-spec (34)
- # clojure-uk (102)
- # clojurescript (202)
- # code-reviews (3)
- # core-async (5)
- # cursive (11)
- # datomic (25)
- # emacs (1)
- # graphql (22)
- # hoplon (6)
- # keechma (59)
- # leiningen (10)
- # luminus (31)
- # lumo (78)
- # off-topic (141)
- # om (32)
- # om-next (2)
- # onyx (6)
- # parinfer (55)
- # pedestal (3)
- # protorepl (3)
- # re-frame (8)
- # reagent (8)
- # ring-swagger (1)
- # rum (20)
- # specter (1)
- # sql (5)
- # test-check (11)
- # vim (13)
- # yada (7)
@flyboarder When hoplon.firebase updated I get error: Required env vars: [FIREBASE_API_KEY FIREBASE_AUTH_DOMAIN FIREBASE_DATABASE_URL FIREBASE_STORAGE_BUCKET]
?
I previously had them in a .cljs file like
(fb/init
{ :apiKey "aaaaaa"
:authDomain "bbbbb"
:databaseURL "ccccc"})
.
I tried putting them in boot.properties but it didn't seem to work : FIREBASE_API_KEY=aaaaa
FIREBASE_AUTH_DOMAIN=bbbbb
FIREBASE_DATABASE_URL=ccccc
FIREBASE_STORAGE_BUCKET=dddddd
@chromalchemy those need to be environment variables
So you can put them on the command line
Before calling boot
Or in your build system
@flyboarder Can you set the enivronment variables in a project file, like build.boot
or boot.properties
? The above latter example didn't work for me. Do you need to use Env library? Whats standard practice?