Integrating Google Docs/Slides/Sheets and Notion.
Using:
Backend Setup including:
- Using Application Default Credentials
- googleapis package + googleapis_auth to get an authenticated client
- enable cloud run api via Cloud Code extension -> creates default service account
- Google cloud console: enable Slides API
Run in a container with Docker:
docker build -t app_img .
docker run -it -p 8080:8080 --name app app_img
dart run build_runner build
dart run bin/server.dart
When finished, remove the container & the image:
docker rm -f app
docker image rm app_img