You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-8Lines changed: 2 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,10 +74,6 @@ docker compose -f docker-compose.prod.yml up -d
74
74
75
75
Open [http://localhost:3000](http://localhost:3000)
76
76
77
-
#### Background worker note
78
-
79
-
The Docker Compose stack starts a dedicated worker container by default. If `REDIS_URL` is not configured, the worker will start, log that it is idle, and do no queue processing. This is expected. Queue-backed API, webhook, and schedule execution requires Redis; installs without Redis continue to use the inline execution path.
80
-
81
77
Sim also supports local models via [Ollama](https://ollama.ai) and [vLLM](https://docs.vllm.ai/) — see the [Docker self-hosting docs](https://docs.sim.ai/self-hosting/docker) for setup details.
82
78
83
79
### Self-hosted: Manual Setup
@@ -123,12 +119,10 @@ cd packages/db && bun run db:migrate
123
119
5. Start development servers:
124
120
125
121
```bash
126
-
bun run dev:full # Starts Next.js app, realtime socket server, and the BullMQ worker
122
+
bun run dev:full # Starts Next.js app and realtime socket server
127
123
```
128
124
129
-
If `REDIS_URL` is not configured, the worker will remain idle and execution continues inline.
130
-
131
-
Or run separately: `bun run dev` (Next.js), `cd apps/sim && bun run dev:sockets` (realtime), and `cd apps/sim && bun run worker` (BullMQ worker).
125
+
Or run separately: `bun run dev` (Next.js) and `cd apps/sim && bun run dev:sockets` (realtime).
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/execution/costs.mdx
-11Lines changed: 0 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,17 +195,6 @@ By default, your usage is capped at the credits included in your plan. To allow
195
195
196
196
Max (individual) shares the same rate limits as team plans. Team plans (Pro or Max for Teams) use the Max-tier rate limits.
197
197
198
-
### Concurrent Execution Limits
199
-
200
-
| Plan | Concurrent Executions |
201
-
|------|----------------------|
202
-
|**Free**| 5 |
203
-
|**Pro**| 50 |
204
-
|**Max / Team**| 200 |
205
-
|**Enterprise**| 200 (customizable) |
206
-
207
-
Concurrent execution limits control how many workflow executions can run simultaneously within a workspace. When the limit is reached, new executions are queued and admitted as running executions complete. Manual runs from the editor are not subject to these limits.
0 commit comments