-
Generating PDFs in n8n Using Google Docs: Tutorial with JSON Code for Import
I was working on a Telegram bot that generates a document for the user and sends it via chat. I had a PDF template where I needed to insert values dynamically and generate the file on the fly. To achieve this, I used Google Docs and exported the document as a PDF. Hereβs a step-by-step…
-
“Docker Desktop is stopping” on macOS
I had this issue with infinity loading and Docker did not started at all. I found a lot of recommendations to reinstall Docker and delete all Docker data (e.g. https://github.com/docker/for-mac/issues/6576#issuecomment-1315409976). BUT. Before you will delete all data first check file ~/Library/Group\ Containers/group.com.docker/settings.json. There is an array of shared paths: Set this array empty or just…
-
How to install Laravel Nova via Composer & API Token
What is Laravel Nova Laravel Nova is a powerful tool for creating admin panels for your Laravel projects. Configure composer.json to install Nova To install Nova you need to add following instructions into you composer.json file: Here we tell composer to add Nova package into our project and where composer can find this package. Create…