Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The first platform with native **MCP** (Tools) + **A2A** (Agent-to-Agent) + **AG
[Website](https://crewform.tech) Β· [Docs](https://docs.crewform.tech) Β· [Discord](https://discord.gg/TAFasJCTWs) Β· [Twitter](https://twitter.com/CrewFormHQ)

[![Deploy on Railway](https://railway.com/button.svg)](https://railway.com/deploy/pH5MkZ?referralCode=g38HaT&utm_medium=integration&utm_source=template&utm_campaign=generic)
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/CrewForm/crewform)

</div>

Expand Down Expand Up @@ -199,9 +200,10 @@ npm run dev

### One-Click Deploy

Deploy the CrewForm task runner to Railway with a single click:
Deploy the CrewForm task runner with a single click:

[![Deploy on Railway](https://railway.com/button.svg)](https://railway.com/deploy/pH5MkZ?referralCode=g38HaT&utm_medium=integration&utm_source=template&utm_campaign=generic)
[![Deploy to Render](https://render.com/images/deploy-to-render-button.svg)](https://render.com/deploy?repo=https://github.com/CrewForm/crewform)

You'll need to provide your own Supabase credentials and LLM API keys after deployment.

Expand Down Expand Up @@ -425,7 +427,7 @@ CrewForm uses an **open-core** model: a free Community Edition under AGPL-3.0 an
| **Observability** | OpenTelemetry Β· Langfuse Β· Datadog Β· Jaeger |
| **Integrations** | Zapier Β· Discord Β· Slack Β· Telegram Β· Email Β· Webhooks Β· Chat Widget |
| **Validation** | Zod |
| **Deployment** | Vercel Β· Docker Compose Β· Railway |
| **Deployment** | Vercel Β· Docker Compose Β· Railway Β· Render |

## Contributing

Expand Down
34 changes: 34 additions & 0 deletions render.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# ─────────────────────────────────────────────────────────────────────────────
# CrewForm Task Runner β€” Render Blueprint
# https://docs.render.com/infrastructure-as-code
# ─────────────────────────────────────────────────────────────────────────────

services:
- type: web
name: crewform-task-runner
runtime: docker
dockerfilePath: task-runner/Dockerfile
dockerContext: .
plan: starter
autoDeploy: true
healthCheckPath: /health
envVars:
# ── Required ────────────────────────────────────────────────────────
- key: SUPABASE_URL
sync: false
- key: SUPABASE_SERVICE_ROLE_KEY
sync: false
- key: ENCRYPTION_KEY
sync: false
- key: WEBHOOK_SECRET
sync: false
# ── Auto-set by Render ──────────────────────────────────────────────
- key: PORT
value: 3001
# ── Optional AI Provider Keys (BYOK via Settings UI recommended) ──
- key: OPENAI_API_KEY
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: GOOGLE_GENERATIVE_AI_API_KEY
sync: false
Loading