By raddevus
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!
Accepted Answer
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:
name: sample-environment-app-types
services:
- name: web
...
envs:
- key: TYPE_SECRET
type: SECRET
value: secret-value
Note: After submitting, value will always be returned as an encrypted value in your app spec. You can keep re-submitting the encrypted value to leave it unchanged, or specify another plain text value to update it.
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/
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.