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
|`service`|*(required)*| Service name: `'vercel'`, `'github'`, `'google'`, `'slack'`, `'apple'`, `'microsoft'`, or `'aws'`|
150
+
|`service`|*(required)*| Service name: `'vercel'`, `'github'`, `'google'`, `'slack'`, `'apple'`, `'microsoft'`, `'aws'`, `'okta'`, `'mongoatlas'`, `'auth0'`, `'resend'`, `'stripe'`, or `'clerk'`|
145
151
|`port`|`4000`| Port for the HTTP server |
146
152
|`seed`| none | Inline seed data (same shape as YAML config) |
147
153
|`baseUrl`| none | Override advertised base URL. Per-service `baseUrl` in seed config takes highest priority, then this option, then `EMULATE_BASE_URL` env var (supports `{service}`), then `PORTLESS_URL` (supports `{service}`, automatically set by the `portless` CLI wrapper), then `http://localhost:<port>`. |
Authorization Code with PKCE is supported with both `plain` and `S256` code challenge methods. The token endpoint supports `authorization_code`, `refresh_token`, and `client_credentials`.
16
+
17
+
## Tenant URLs
18
+
19
+
Auth0 advertises tenant-aware URLs. With this config:
20
+
21
+
```yaml
22
+
auth0:
23
+
tenant: my-tenant
24
+
```
25
+
26
+
Discovery returns endpoints under:
27
+
28
+
```text
29
+
http://my-tenant.auth0.localhost:4009
30
+
```
31
+
32
+
For test environments that cannot route subdomains, call discovery with a tenant query parameter:
Copy file name to clipboardExpand all lines: apps/web/app/docs/page.mdx
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Getting Started
2
2
3
-
Local drop-in replacement for Vercel, GitHub, Google, Slack, Apple, Microsoft, AWS, Okta, MongoDB Atlas, Resend, and Stripe APIs. Built for CI and no-network sandboxes. Fully stateful, production-fidelity API emulation. Not mocks.
3
+
Local drop-in replacement for Vercel, GitHub, Google, Slack, Apple, Microsoft, AWS, Okta, MongoDB Atlas, Auth0, Resend, and Stripe APIs. Built for CI and no-network sandboxes. Fully stateful, production-fidelity API emulation. Not mocks.
4
4
5
5
## Quick Start
6
6
@@ -19,8 +19,9 @@ All services start with sensible defaults. No config file needed:
0 commit comments