As I was looking into the environment variables documentation for App Platform, I could not understand what is meant by ${my-service.BINDABLE_NAME}
. I’m using a nodejs server and trying to connect to the database on deploy. I tried process.env["database.HOSTNAME"]
as a format but without success. I can’t for the life of me find these variables which are needed at deploy time (After starting the run command).
Thanks for your help
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
The bindable variables are meant to be used directly in the values of environment variables that you define for your app components.
For example, you may just want to define your own environment variable called DATABASE_URL
with value of ${db.DATABASE_URL}
. The bindable reference of ${db.DATABASE_URL}
will be replaced with the actual values when your app is deployed. The db
prefix here is the name of my database component, so this would reference one of your own components.
You can input these bindable references directly in the UI where you enter environment variables, or if you’re working with a raw app spec YAML, you can include them directly in there. This is an example from our sample-golang-notes repo:
name: sample-golang-notes
services:
- name: web
github:
repo: digitalocean/sample-golang-notes
branch: main
envs:
- key: DATABASE_URL
value: ${db.DATABASE_URL}
databases:
- name: db
engine: PG
version: "12"
If your application code is in nodejs, then you would then access your environment variables as usual, depending on what name you’ve given them, with process.env.DATABASE_URL
.
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.