I created docker backend application that uses Firebase Admin SDK - https://firebase.google.com/docs/admin/setup#node.js_2. At the startup, the application reads JSON file from somewhere.
FirebaseApp.Create(new AppOptions()
{
Credential = GoogleCredential.FromFile("path/to/credentials_file.json"),
});
I want to deploy this application on the DigitalOcean app platform. Where I can save this credentials_file.json? Is it even supported for the DigitalOcean app platform?
NOTE:
- The application is a public docker image, so I can't put the file inside the image.