scriptPilot

Results 66 comments of scriptPilot

Same issue on my side while installing latest Firebase ...

I did it this way ... ``` Firebase.auth().onAuthStateChanged(user => { if (user) { store.commit('module/openDBChannel') } else { store.commit('module/closeDBChannel') } }) ```

@louisameline - Thank you for the response. It's ok to work with .toDate() but I thought **created_at** and **updated_at** are transformed automatically to a date object before adding them to...

I have tested again. Even if explained [in the documentation](https://mesqueeb.github.io/vuex-easy-firestore/extra-features.html#firestore-timestamp-conversion), the transformation is not done automatically for created_at and updated_at. But it works when I configure it manually as described....

Ok, now it's clear to me. So it would be good to have the updated documentation :-)

I have 404 as well - somewhere in this block: ```php if(!isset($_FILES[$name_in_files])) return $this->responder->error(1003, $name_in_files,['message' => "filename should be 'file'"]); elseif($_FILES[$name_in_files]['error']!=0) return $this->responder->error(1008, $name_in_files,['message' => "error saving file"]); elseif(file_exists($path.$_FILES[$name_in_files]['name'])) return...

Basically, already this line results in error 404 return: ```php if(!isset($_FILES[$name_in_files])) return $this->responder->error(1003, $name_in_files,['message' => "filename should be 'file'"]); ```` This line results in a proper response: ```php return $this->responder->success(['message'...

If anyone is interested, for Vue I have created some handy bindings to deal with this API :-) https://github.com/scriptPilot/vueuse/

It figures out it is even a bit easier. Homebrew installes Xcode developer tools first which installs Python which installs Python TK. So it must not be installed again in...

Ok, well I will try the linked steps by step - thanks for that. I think it would be really helpful to have the same Docker image for all platforms...