We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e7e5e3 commit 675af99Copy full SHA for 675af99
render.yaml
@@ -1,21 +1,12 @@
1
services:
2
- type: web
3
name: forgotten-api
4
- runtime: docker
+ runtime: go
5
plan: free
6
- rootDir: .
7
- dockerfilePath: ./docker/Dockerfile
+ buildCommand: go build -o app cmd/server/main.go
+ startCommand: ./app
8
autoDeploy: true
9
healthCheckPath: /health
10
- # Force Docker build - this overrides auto-detection
11
- dockerCommand: ./app
12
- buildFilter:
13
- paths:
14
- - docker/**
15
- - "**/*.go"
16
- - go.mod
17
- - go.sum
18
- - Makefile
19
envVars:
20
- key: SERVER_HOST
21
value: 0.0.0.0
0 commit comments