-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathrender.yaml
47 lines (44 loc) · 1.18 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
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
- type: web
name: remix-fastify-react-router
plan: free
runtime: node
buildFilter:
paths:
- ./examples/react-router
- ./packages/**/*
buildCommand: corepack enable && pnpm i && pnpm run build
startCommand: cd examples/react-router && pnpm run start