I’m trying to get my blueprint to synce to my postgres db and everytime it comes up as “failed deploy”.
Postgres db is available and I’ve tried diagnosing via the docs but cannot solve.
Here is my render.yaml:
databases:
- name: home_updates_api
databaseName: home_updates_api
user: home_updates_api
services:
- type: web
name: home_updates_api
runtime: ruby
buildCommand: "./bin/render-build.sh"
startCommand: "bundle exec puma -C config/puma.rb"
envVars:
- key: DATABASE_URL
fromDatabase:
name: home_updates_api
property: connectionString
- key: RAILS_MASTER_KEY
sync: false
I checked the RAILS_MASTER_KEY and it is correct. Any help would be great, thanks!