google-cloud

Google Cloud Platform: Clojure + {GAE, GCE, anything else on Google Platform}
jouerose 2017-10-05T07:38:26.000175Z

hello all,

jouerose 2017-10-05T07:38:56.000205Z

are there a set of clojure specific libraries that can help for google cloud ?

jouerose 2017-10-05T07:39:01.000187Z

thanks

barry 2017-10-05T15:38:44.000340Z

@jouerose we use the Google Cloud Java SDK (`[com.google.cloud/google-cloud "0.18.0-alpha"]`) and wrap it in clojure functions as needed.

barry 2017-10-05T15:39:55.000472Z

https://github.com/physion/ovation-webapi/blob/development/src/ovation/pubsub.clj is an example Component wrapping PubSub

domparry 2017-10-05T15:40:19.000098Z

Hi. Look for a repo on github called SimpleValue

domparry 2017-10-05T15:40:32.000241Z

Wrapper for a lot of the gcloud products

jouerose 2017-10-05T15:43:52.000488Z

thank you @barry

jouerose 2017-10-05T15:45:25.000386Z

@domparry sorry i have not well understood what you said

domparry 2017-10-05T15:46:58.000285Z

Sorry... Mobile typos

domparry 2017-10-05T15:47:26.000814Z

Also, we use datasplash for cloud data flow

domparry 2017-10-05T15:48:17.000815Z

Here you go

domparry 2017-10-05T15:48:21.000290Z

https://github.com/SimpleValue

jouerose 2017-10-05T15:48:42.000462Z

@domparry thank you, opening it

👍 1
jouerose 2017-10-05T15:51:06.000012Z

are you using firebase for auth or something else ? what are your advise about authentication library or service ?

domparry 2017-10-05T15:51:57.000587Z

We're going to be, but for now we have just implemented a jwt solution. Our requirements were simple

domparry 2017-10-05T15:52:25.000101Z

We do a one time pin token concept

domparry 2017-10-05T15:52:56.000271Z

But firebase auth is where we're headed soon.

jouerose 2017-10-05T15:53:44.000406Z

thanks for your advice

domparry 2017-10-05T15:54:07.000733Z

No problem.

domparry 2017-10-05T15:54:19.000257Z

Happy to help where I can.

jouerose 2017-10-05T15:59:33.000778Z

@domparry apart from firebase auth, other library or service you think i should consider ?

domparry 2017-10-05T16:00:46.000560Z

I haven't done much research outside of firebase auth. But if you run on GKE, I'm sure there are many options in containers out there already.

jouerose 2017-10-05T16:01:16.000096Z

ok. thanks

domparry 2017-10-05T17:12:19.000499Z

@jouerose: take a look at this: https://github.com/crisptrutski/matchbox

domparry 2017-10-05T17:12:26.000356Z

it’s probably what we’ll use.

domparry 2017-10-05T17:17:44.000382Z

or something like this if you prefer to use the google built UI’s https://github.com/cljsjs/packages/tree/master/firebaseui

jouerose 2017-10-05T18:43:19.000102Z

cheers @domparry