Facing problem in deployment

Hi, I’m new to Render and I’m not sure if I’m doing this right

So I need deploy to render from docker image. This is in this github repo(GitHub - Ashutosh-Bhadauriya/render.com). But after connecting the github repo, it should autmatically detect the render.yaml file right? But I’m still asked to add these and I’m not sure about how to do this.

Here’s my render.yaml file.

services:
- type: web
  name: trigger-v2-render-demo # Change this to your preferred app name
  env: docker
  build:
    image: "ghcr.io/triggerdotdev/trigger.dev:latest"
  httpHealthCheck:
    path: "/healthcheck"
    interval: 15
    timeout: 10
    initialDelaySeconds: 30
  autoDeploy: true
  envVars:
  - key: MAGIC_LINK_SECRET
    sync: false
  - key: SESSION_SECRET
    sync: false
  - key: LOGIN_ORIGIN
    sync: false
  - key: APP_ORIGIN
    sync: false
  - key: FROM_EMAIL
    sync: false
  - key: REPLY_TO_EMAIL
    sync: false
  - key: RESEND_API_KEY
    sync: false
  - key: AUTH_GITHUB_CLIENT_ID
    sync: false # Optional for GitHub OAuth
  - key: AUTH_GITHUB_CLIENT_SECRET
    sync: false # Optional for GitHub OAuth

Hi,

A render.yaml is a Blueprint. To utilize it, go to “Blueprints” > “New Blueprint Instance”, or “New” > “Blueprint”.

It’s not used if creating a service manually.

Alan

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