I have an app where I initialized it with certain environment variables when I created it. However, it does not show up in the Settings > App-Level Environment Variables section. When I tried to add the updated variables, and I echo the variable in console, I get the old envvar. Where is the initial envvar being stored and how can I update it?
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.
Hi there,
On DigitalOcean’s App Platform, environment variables set during app creation should appear under the “Environment Variables” section for that specific app.
There are a few things that I would suggest checking:
DigitalOcean App Platform provides the ability to set environment variables at both the app level and the component level (where a component can be a service, static site, worker, etc.). Ensure that you’re checking both places. A component-level environment variable will override an app-level one if they have the same name.
After making changes to your environment variables, ensure that you’ve deployed the latest version of your app to reflect these changes. You can trigger a new deployment manually if needed.
Some applications or frameworks cache environment variables or their configurations. If you suspect this might be the case, you can try force-redeploying your application too.
Check the deployment logs to ensure that there were no errors during the last deployment that might have caused issues with environment variables.
Let me know how it goes!
Best,
Bobby