Sofiane Gargouri

Results 16 comments of Sofiane Gargouri

As a workaround, I did this: ``` class FcmClient < FCM def initialize super(ENV.fetch('FCM_API_TOKEN', nil), credentials_file_path, ENV.fetch('FCM_PROJECT_ID', nil)) end private def credentials_file_path file = Tempfile.new('FCM_CREDENTIALS') file.write(Base64.decode64(ENV.fetch('FCM_CREDENTIALS', nil))) file.rewind file.close file.path...

Well, I'd prefer to, but actually you're supposed to provide a file path to FCM for it to work, not the actual value of the file (which is the requested...

Adding it in the Dockerfile did not really help on my side. However, adding `/usr/local/rvm/bin/rvm fix-permissions` to the postCreateCommand did work

I'm having this error while trying the `native_usb.rs` in a Tauri app. It seems like the device is bound to a specific driver. What I can't understand is why the...

I'm not sure I'll be able to do that now since the printer is heavily used and I do not have another example, but I'll try doing that. Thanks mate...

https://github.com/user-attachments/assets/e94b47b0-33df-4789-b08e-8a3081a0a1cc Here is my schema: ```json { "kind": "singleType", "collectionName": "footers", "info": { "singularName": "footer", "pluralName": "footers", "displayName": "Footer", "description": "" }, "options": { "draftAndPublish": true }, "pluginOptions": { "i18n":...

> I think the pbl @pepegablaza is your field is not localized. if you go in the CTB and edit the field (go to advanced tabs) you will have to...

> Hello [@sofianegargouri](https://github.com/sofianegargouri) in your schema is missing this part `"attributes": { "title": { "type": "string", "pluginOptions": { "i18n": { "localized": true } } } }` I am gonna try...

Same issue here ! HTTP Request: ``` curl --location --globoff 'http://localhost:8000/transactions?filter[type]=AO,OE' \ --header 'Accept: application/json' ``` HTTP Response: ```json { "message": "SQLSTATE[HY093]: Invalid parameter number: parameter was not defined (Connection:...

I've got the same issue without a monorepo and a freshly setup project using [email protected] My package.json: ```json { "name": "ui-kit", "version": "0.0.1", "devDependencies": { "sass": "^1.91.0", "storybook": "^9.1.3", "typescript":...