I have my static content based app (DO App Platform) up and running. I’d like to add one file which contains an API key to the app. Is it possible to add the file without adding it to my github repo? Is there some way to add a secret api key to my app which can be read from JavaScript?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
As far as adding a file, you could configure a custom build command to pull down a file during the build process. Outside of that we don’t have any other mechanisms to add an “env” file.
You can however, define a given environment variable as a secret for your application. We store the value encrypted along the entire process until it gets mounted in your container for use.
It’s both available as an option when configuring environment variables in the UI as well as on the app spec.
Here is how you would set it in an example app spec:
Additionally, feel free to reference our spec documentation for more information about all the configuration options available to you:
https://www.digitalocean.com/docs/app-platform/references/app-specification-reference/