Skip to content

Commit 6edf941

Browse files
Merge pull request #16 from aayush-tripathi/render-init
added infra blueprints
2 parents 7c3b59a + 97a2193 commit 6edf941

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

render.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Render blueprint
2+
services:
3+
- type: web
4+
name: executor
5+
env: docker
6+
plan: free
7+
dockerfilePath: exec.Dockerfile
8+
autoDeploy: true
9+
envVars:
10+
- key: PORT
11+
value: 8080

vercel.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": 2,
3+
"name": "tundra-playground",
4+
"builds": [
5+
{
6+
"src": "playground/package.json",
7+
"use": "@vercel/static-build",
8+
"config": { "distDir": "playground/dist" }
9+
}
10+
],
11+
"env": {
12+
"VITE_EXECUTOR_URL": "https://REPLACE-ME.onrender.com"
13+
}
14+
}

0 commit comments

Comments
 (0)