Blueprint sync failed with no error code

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!

Hello,

The issue here was the bundle exec rake assets:precompile command was failing the build. This command wasn’t required as the Rails application was an API only, and didn’t have assets.

Regards,

Keith
Render Support, UTC+10 :australia:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.