mirror of
https://github.com/Lissy93/dashy.git
synced 2026-06-02 06:44:51 -04:00
22 lines
806 B
YAML
22 lines
806 B
YAML
# Render Blueprint https://render.com/docs/blueprint-spec
|
|
# One-click deploy: https://render.com/deploy?repo=https://github.com/lissy93/dashy
|
|
# Builds the repo's Dockerfile and runs the full Node server, so status checks work.
|
|
services:
|
|
- type: web
|
|
name: dashy
|
|
runtime: docker
|
|
dockerfilePath: ./Dockerfile
|
|
# Free tier spins down when idle. Bump to a paid plan for always-on
|
|
plan: free
|
|
healthCheckPath: /
|
|
# Render's filesystem is wiped on each redeploy, so config saved via the UI won't
|
|
# persist. To keep it, use a paid plan and uncomment the disk below (Dashy keeps
|
|
# its conf.yml and assets in /app/user-data)
|
|
# disk:
|
|
# name: dashy-user-data
|
|
# mountPath: /app/user-data
|
|
# sizeGB: 1
|
|
envVars:
|
|
- key: NODE_ENV
|
|
value: production
|