-
Notifications
You must be signed in to change notification settings - Fork 208
Expand file tree
/
Copy pathworlds-manifest.json
More file actions
142 lines (142 loc) · 4.64 KB
/
worlds-manifest.json
File metadata and controls
142 lines (142 loc) · 4.64 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"worlds": [
{
"id": "local",
"type": "official",
"package": "@workflow/world-local",
"name": "Local",
"description": "Zero-config world bundled with Workflow for local development. No external services required.",
"docs": "/docs/deploying/world/local-world",
"env": {},
"services": []
},
{
"id": "postgres",
"type": "official",
"package": "@workflow/world-postgres",
"name": "Postgres",
"description": "Production-ready, self-hosted world using PostgreSQL for durable storage and graphile-worker for reliable job processing.",
"docs": "/docs/deploying/world/postgres-world",
"example": "https://github.com/vercel/workflow-examples/tree/main/postgres",
"env": {
"WORKFLOW_TARGET_WORLD": "@workflow/world-postgres",
"WORKFLOW_POSTGRES_URL": "postgres://world:world@localhost:5432/world"
},
"services": [
{
"name": "postgres",
"image": "postgres:18-alpine",
"ports": ["5432:5432"],
"env": {
"POSTGRES_USER": "world",
"POSTGRES_PASSWORD": "world",
"POSTGRES_DB": "world"
},
"healthCheck": {
"cmd": "pg_isready",
"interval": "10s",
"timeout": "5s",
"retries": 5
}
}
],
"setup": "./packages/world-postgres/bin/setup.js"
},
{
"id": "vercel",
"type": "official",
"package": "@workflow/world-vercel",
"name": "Vercel",
"description": "Fully-managed world for Vercel deployments. Zero config, infinitely scalable, built-in authentication.",
"docs": "/docs/deploying/world/vercel-world",
"env": {
"WORKFLOW_VERCEL_ENV": "production"
},
"services": [],
"requiresDeployment": true
},
{
"id": "turso",
"type": "community",
"package": "@workflow-worlds/turso",
"name": "Turso",
"description": "Turso/libSQL World for embedded or remote SQLite databases",
"repository": "https://github.com/mizzle-dev/workflow-worlds",
"docs": "https://github.com/mizzle-dev/workflow-worlds/tree/main/packages/turso",
"env": {
"WORKFLOW_TARGET_WORLD": "@workflow-worlds/turso",
"WORKFLOW_TURSO_DATABASE_URL": "file:workflow.db"
},
"services": [],
"setup": "pnpm exec workflow-turso-setup"
},
{
"id": "mongodb",
"type": "community",
"package": "@workflow-worlds/mongodb",
"name": "MongoDB",
"description": "MongoDB World using native driver",
"repository": "https://github.com/mizzle-dev/workflow-worlds",
"docs": "https://github.com/mizzle-dev/workflow-worlds/tree/main/packages/mongodb",
"env": {
"WORKFLOW_TARGET_WORLD": "@workflow-worlds/mongodb",
"WORKFLOW_MONGODB_URI": "mongodb://localhost:27017",
"WORKFLOW_MONGODB_DATABASE_NAME": "workflow"
},
"services": [
{
"name": "mongodb",
"image": "mongo:7",
"ports": ["27017:27017"],
"healthCheck": {
"cmd": "mongosh --eval 'db.runCommand({ ping: 1 })'",
"interval": "10s",
"timeout": "5s",
"retries": 5
}
}
]
},
{
"id": "redis",
"type": "community",
"package": "@workflow-worlds/redis",
"name": "Redis",
"description": "Redis World using BullMQ for queues, Redis Streams for output",
"repository": "https://github.com/mizzle-dev/workflow-worlds",
"docs": "https://github.com/mizzle-dev/workflow-worlds/tree/main/packages/redis",
"env": {
"WORKFLOW_TARGET_WORLD": "@workflow-worlds/redis",
"WORKFLOW_REDIS_URI": "redis://localhost:6379"
},
"services": [
{
"name": "redis",
"image": "redis:7-alpine",
"ports": ["6379:6379"],
"healthCheck": {
"cmd": "redis-cli ping",
"interval": "10s",
"timeout": "5s",
"retries": 5
}
}
]
},
{
"id": "jazz",
"type": "community",
"package": "workflow-world-jazz",
"name": "Jazz",
"description": "Jazz Cloud world for local-first sync and real-time collaboration",
"repository": "https://github.com/garden-co/workflow-world-jazz",
"docs": "https://github.com/garden-co/workflow-world-jazz",
"env": {
"WORKFLOW_TARGET_WORLD": "workflow-world-jazz"
},
"services": [],
"requiresCredentials": true,
"credentialsNote": "Requires JAZZ_API_KEY, JAZZ_WORKER_ACCOUNT, and JAZZ_WORKER_SECRET from Jazz Cloud"
}
]
}