-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
render.yaml
36 lines (34 loc) · 910 Bytes
/
render.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
services:
- type: web
name: remix-fastify
plan: free
runtime: node
buildFilter:
paths:
- ./examples/playground
- ./packages/**/*
buildCommand: corepack enable && pnpm i && pnpm run build
startCommand: cd examples/playground && pnpm run start
envVars:
- key: SESSION_SECRET
generateValue: true
- type: web
name: remix-fastify-basic
plan: free
runtime: node
buildFilter:
paths:
- ./examples/basic
- ./packages/**/*
buildCommand: corepack enable && pnpm i && pnpm run build
startCommand: cd examples/basic && pnpm run start
- type: web
name: remix-fastify-vite
plan: free
runtime: node
buildFilter:
paths:
- ./examples/vite
- ./packages/**/*
buildCommand: corepack enable && pnpm i && pnpm run build
startCommand: cd examples/vite && pnpm run start