How To Upload Secrets/Service Account File

I’m having trouble setting the value of a google service account file. On Heroku one can do this by adding the google application credentials buildpack which tells Heroku that the value of the service account file is in a env var called GOOGLE_CREDENTIALS. On Render you can also achieve the same functionality by pasting the value of the service account file in their secret files section.

My question is how can I achieve the same functionality on Koyeb?

Hi @FueltoFly_Tech,

For now the only option I see is to create a custom script which will first create a file with a content from env var and then will start your app.
In service setting you would need to set this script as your run command.

Ok thanks! @Lukasz_Oles