Configurations
FluidGrids is a managed service, so there is no server configuration to maintain. What you do configure is how your clients reach FluidGrids, and how your workflows behave when they run.
Connecting a client
| Client | Setting | Notes |
|---|---|---|
| CLI | FLUIDGRIDS_API_URL | Or pass -u/--url, or run fluidgrids config set url <endpoint> |
| Node SDK | FLUIDGRIDS_ENDPOINT | Or pass endpoint when constructing the client |
| Python SDK | FLUIDGRIDS_ENDPOINT | Or pass endpoint= when constructing the client |
| Browser / VS Code extensions | BURDENOFF_ENV | Read only by the extensions, not by the CLI or SDKs |
| MCP server | FLUIDGRIDS_GRAPHQL_URL, FLUIDGRIDS_API_URL | Plus FLUIDGRIDS_ACCESS_TOKEN |
All clients default to production. See the FAQ for the endpoint values.
Authentication
| Setting | Description |
|---|---|
FLUIDGRIDS_API_KEY | Workspace-scoped API key, created under Developer Portal › API Keys in the app |
API keys are scoped to a single workspace and are audit-logged on every use. Rotate them from the same screen that issues them; revocation takes effect immediately.
Keep keys out of source control. Read them from your own secret store or your CI provider's encrypted variables.
Workflow execution settings
These are configured in the product, not by environment variable. Workspace-wide defaults live on the workflow module's Settings screen (/workflows/settings); per-node behaviour is set in the node's Settings tab in the builder:
| Setting | Where | Description |
|---|---|---|
| Default Timeout | Settings › Execution | How long a run may take before it is stopped |
| Max Retries / Retry Delay | Settings › Execution | Automatic retries on failure and the wait between them |
| Concurrent Execution Limit | Settings › Execution | How many runs may execute at once in the workspace |
| Per-node retry and error handling | Node › Settings | Whether a failed node is retried, and whether the run continues on error |
Plan limits cap the maximum values; the workspace's own settings apply below those caps. See Settings and Plans and Quotas.