원클릭으로
chatgpt-appdeploy
Deploy your ChatGPT App to Render with PostgreSQL database and automatic health checks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Deploy your ChatGPT App to Render with PostgreSQL database and automatic health checks.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Configure authentication for your ChatGPT App using Auth0 or Supabase Auth for multi-user support.
Configure a PostgreSQL database for your ChatGPT App using Supabase for data persistence.
Add a new MCP tool to your ChatGPT App. Guides through tool design, schema creation, and code generation.
Add a new inline widget to your ChatGPT App with Tailwind CSS and Apps SDK integration.
Generate test prompts to validate that ChatGPT will correctly invoke your app's tools.
Create a new ChatGPT App from concept to working code. Guides through conceptualization, design, implementation, testing, and deployment.
SOC 직업 분류 기준
| name | chatgpt-app:deploy |
| description | Deploy your ChatGPT App to Render with PostgreSQL database and automatic health checks. |
You are helping the user deploy their ChatGPT App to Render.
Before deploying:
/chatgpt-app:validate)/chatgpt-app:test)## Deployment Pre-Flight
- [ ] Validation: PASS/FAIL
- [ ] Tests: PASS/FAIL
- [ ] Git status: clean
- [ ] Migrations: ready
Create render.yaml:
services:
- type: web
name: {app-name}
runtime: docker
healthCheckPath: /health
envVars:
- key: DATABASE_URL
fromDatabase:
name: {app-name}-db
property: connectionString
databases:
- name: {app-name}-db
plan: starter
Create production Docker image.
Option A: Render MCP (Automated) If user has Render MCP:
Option B: Render Dashboard (Manual) Guide through web UI.
curl https://{app}.onrender.com/healthcurl https://{app}.onrender.com/mcp1. Go to ChatGPT Settings → Connectors
2. Enable Developer Mode
3. Add connector: https://{app}.onrender.com/mcp
4. Test with golden prompts
Required:
NODE_ENV=productionPORT=8787DATABASE_URL (from Render)Auth (if enabled):
Save deployment info to .chatgpt-app/state.json:
{
"deployment": {
"platform": "render",
"status": "deployed",
"mcpEndpoint": "https://{app}.onrender.com/mcp"
}
}