Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit 49bdaa4

Browse files
committed
try render
1 parent 47d22bd commit 49bdaa4

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

render.yaml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
services:
2+
- type: web
3+
plan: free
4+
name: api
5+
env: ruby
6+
repo: https://github.com/mxenabled/mx-quickconnect
7+
branch: posthog
8+
rootDir: ruby
9+
scaling:
10+
minInstances: 1
11+
maxInstances: 3
12+
targetMemoryPercent: 60 # optional if targetCPUPercent is set
13+
targetCPUPercent: 60 # optional if targetMemory is set
14+
buildCommand: bundle install
15+
startCommand: bundle exec ruby app.rb
16+
domains:
17+
- test0.render.com
18+
envVars:
19+
- key: STRIPE_API_KEY
20+
value: dummy
21+
- type: web
22+
name: frontend
23+
rootDir: frontend
24+
repo: https://github.com/mxenabled/mx-quickconnect
25+
branch: posthog
26+
env: static
27+
buildCommand: npm build
28+
staticPublishPath: ./build
29+
pullRequestPreviewsEnabled: true # optional
30+
buildFilter:
31+
paths:
32+
- src/**/*.js
33+
ignoredPaths:
34+
- src/**/*.test.js
35+
headers:
36+
- path: /*
37+
name: X-Frame-Options
38+
value: sameorigin
39+
routes:
40+
- type: redirect
41+
source: /old
42+
destination: /new
43+
- type: rewrite
44+
source: /a/*
45+
destination: /a

0 commit comments

Comments
 (0)