[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-emulate":3,"mdc--hhb5ir-key":51,"related-org-vercel-labs-emulate":5550,"related-repo-vercel-labs-emulate":5711},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":40,"repoUrl":41,"updatedAt":42,"license":43,"forks":44,"topics":45,"repo":46,"sourceUrl":49,"mdContent":50},"emulate","emulate developer APIs for local testing","Local drop-in API emulator for Vercel, GitHub, Google, Slack, Apple, Microsoft, AWS, Linear, and other developer APIs. Use when the user needs to start emulated services, configure seed data, write tests against local APIs, set up CI without network access, or work with the emulate CLI or programmatic API. Triggers include \"start the emulator\", \"emulate services\", \"mock API locally\", \"create emulator config\", \"test against local API\", \"npx emulate\", or any task requiring local service emulation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19,22,25,28,31,34,37],{"name":13,"slug":14,"type":15},"Linear","linear","tag",{"name":17,"slug":18,"type":15},"GitHub","github",{"name":20,"slug":21,"type":15},"Local Development","local-development",{"name":23,"slug":24,"type":15},"Microsoft","microsoft",{"name":26,"slug":27,"type":15},"Slack","slack",{"name":29,"slug":30,"type":15},"API Development","api-development",{"name":32,"slug":33,"type":15},"Apple","apple",{"name":35,"slug":36,"type":15},"AWS","aws",{"name":38,"slug":39,"type":15},"Testing","testing",1511,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Femulate","2026-07-17T06:08:59.816303",null,95,[],{"repoUrl":41,"stars":40,"forks":44,"topics":47,"description":48},[],"Local API emulation for CI and no-network sandboxes","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Femulate\u002Ftree\u002FHEAD\u002Fskills\u002Femulate","---\nname: emulate\ndescription: Local drop-in API emulator for Vercel, GitHub, Google, Slack, Apple, Microsoft, AWS, Linear, and other developer APIs. Use when the user needs to start emulated services, configure seed data, write tests against local APIs, set up CI without network access, or work with the emulate CLI or programmatic API. Triggers include \"start the emulator\", \"emulate services\", \"mock API locally\", \"create emulator config\", \"test against local API\", \"npx emulate\", or any task requiring local service emulation.\nallowed-tools: Bash(npx emulate:*)\n---\n\n# Service Emulation with emulate\n\nLocal drop-in replacement services for CI and no-network sandboxes. Fully stateful, production-fidelity API emulation, not mocks.\n\n## Quick Start\n\n```bash\nnpx emulate\n```\n\nAll services start with sensible defaults:\n\n| Service   | Default Port |\n|-----------|-------------|\n| Vercel    | 4000        |\n| GitHub    | 4001        |\n| Google    | 4002        |\n| Slack     | 4003        |\n| Apple     | 4004        |\n| Microsoft | 4005        |\n| Okta      | 4006        |\n| AWS       | 4007        |\n| Resend    | 4008        |\n| Stripe    | 4009        |\n| MongoDB Atlas | 4010   |\n| Clerk     | 4011        |\n| Linear    | 4012        |\n| Twilio    | 4013        |\n\n## CLI\n\n```bash\n# Start all services (zero-config)\nnpx emulate\n\n# Start specific services\nnpx emulate --service vercel,github\n\n# Custom base port (auto-increments per service)\nnpx emulate --port 3000\n\n# Use a seed config file\nnpx emulate --seed config.yaml\n\n# Generate a starter config\nnpx emulate init\n\n# Generate config for a specific service\nnpx emulate init --service vercel\n\n# List available services\nnpx emulate list\n```\n\n### Options\n\n| Flag | Default | Description |\n|------|---------|-------------|\n| `-p, --port` | `4000` | Base port (auto-increments per service) |\n| `-s, --service` | all | Comma-separated services to enable |\n| `--seed` | auto-detect | Path to seed config (YAML or JSON) |\n| `--base-url` | none | Override advertised base URL (supports `{service}` template) |\n| `--portless` | off | Serve over HTTPS via portless (auto-registers aliases) |\n\nThe port can also be set via `EMULATE_PORT` or `PORT` environment variables.\n\nThe advertised base URL (used in OAuth redirects, webhook URLs, etc.) can be overridden via `--base-url`, the `EMULATE_BASE_URL` env var (supports `{service}` template), or per-service `baseUrl` in the seed config. When running under portless, the `PORTLESS_URL` env var is also detected automatically.\n\n## Programmatic API\n\n```bash\nnpm install emulate\n```\n\nEach call to `createEmulator` starts a single service:\n\n```typescript\nimport { createEmulator } from 'emulate'\n\nconst github = await createEmulator({ service: 'github', port: 4001 })\nconst vercel = await createEmulator({ service: 'vercel', port: 4002 })\n\ngithub.url   \u002F\u002F 'http:\u002F\u002Flocalhost:4001'\nvercel.url   \u002F\u002F 'http:\u002F\u002Flocalhost:4002'\n\nawait github.close()\nawait vercel.close()\n```\n\n### Options\n\n| Option | Default | Description |\n|--------|---------|-------------|\n| `service` | *(required)* | `'vercel'`, `'github'`, `'google'`, `'slack'`, `'apple'`, `'microsoft'`, `'okta'`, `'aws'`, `'resend'`, `'stripe'`, `'mongoatlas'`, `'clerk'`, `'linear'`, or `'twilio'` |\n| `port` | `4000` | Port for the HTTP server |\n| `seed` | none | Inline seed data (same shape as YAML config) |\n| `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:\u002F\u002Flocalhost:\u003Cport>`. |\n\n### Instance Methods\n\n| Method | Description |\n|--------|-------------|\n| `url` | Base URL of the running server |\n| `reset()` | Wipe the store and replay seed data |\n| `close()` | Shut down the HTTP server, returns a Promise |\n\n## Vitest \u002F Jest Setup\n\n```typescript\nimport { createEmulator, type Emulator } from 'emulate'\n\nlet github: Emulator\nlet vercel: Emulator\n\nbeforeAll(async () => {\n  ;[github, vercel] = await Promise.all([\n    createEmulator({ service: 'github', port: 4001 }),\n    createEmulator({ service: 'vercel', port: 4002 }),\n  ])\n  process.env.GITHUB_EMULATOR_URL = github.url\n  process.env.VERCEL_EMULATOR_URL = vercel.url\n})\n\nafterEach(() => { github.reset(); vercel.reset() })\nafterAll(() => Promise.all([github.close(), vercel.close()]))\n```\n\n## Configuration\n\nConfiguration is optional. The CLI auto-detects config files in this order:\n\n1. `emulate.config.yaml` \u002F `.yml`\n2. `emulate.config.json`\n3. `service-emulator.config.yaml` \u002F `.yml`\n4. `service-emulator.config.json`\n\nOr pass `--seed \u003Cfile>` explicitly. Run `npx emulate init` to generate a starter file.\n\n### Config Structure\n\n```yaml\ntokens:\n  my_token:\n    login: admin\n    scopes: [repo, user]\n\nvercel:\n  users:\n    - username: developer\n      name: Developer\n      email: dev@example.com\n  teams:\n    - slug: my-team\n      name: My Team\n  projects:\n    - name: my-app\n      team: my-team\n      framework: nextjs\n  integrations:\n    - client_id: oac_abc123\n      client_secret: secret_abc123\n      name: My Vercel App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fvercel\n\ngithub:\n  users:\n    - login: octocat\n      name: The Octocat\n      email: octocat@github.com\n  orgs:\n    - login: my-org\n      name: My Organization\n  repos:\n    - owner: octocat\n      name: hello-world\n      language: JavaScript\n      auto_init: true\n  oauth_apps:\n    - client_id: Iv1.abc123\n      client_secret: secret_abc123\n      name: My Web App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fgithub\n\ngoogle:\n  users:\n    - email: testuser@example.com\n      name: Test User\n  oauth_clients:\n    - client_id: my-client-id.apps.googleusercontent.com\n      client_secret: GOCSPX-secret\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fgoogle\n\nslack:\n  team:\n    name: My Workspace\n    domain: my-workspace\n  users:\n    - name: developer\n      real_name: Developer\n      email: dev@example.com\n  channels:\n    - name: general\n      topic: General discussion\n  bots:\n    - name: my-bot\n  oauth_apps:\n    - client_id: \"12345.67890\"\n      client_secret: example_client_secret\n      name: My Slack App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fslack\n\nlinear:\n  organization:\n    name: Acme\n    url_key: acme\n  users:\n    - email: admin@example.com\n      name: Admin User\n      admin: true\n    - email: dev@example.com\n      name: Developer\n  teams:\n    - key: ENG\n      name: Engineering\n  issues:\n    - team: ENG\n      title: Fix local checkout test\n      state: Todo\n      assignee: dev@example.com\n  oauth_apps:\n    - client_id: lin_example_client_id\n      client_secret: example_client_secret\n      name: My Linear App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Flinear\n      scopes: [read, write, issues:create, comments:create]\n  tokens:\n    - token: lin_test_admin\n      user: admin@example.com\n      scopes: [read, write, issues:create, comments:create, admin]\n\napple:\n  users:\n    - email: testuser@icloud.com\n      name: Test User\n  oauth_clients:\n    - client_id: com.example.app\n      team_id: TEAM001\n      name: My Apple App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\n\nmicrosoft:\n  users:\n    - email: testuser@outlook.com\n      name: Test User\n  oauth_clients:\n    - client_id: example-client-id\n      client_secret: example-client-secret\n      name: My Microsoft App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fmicrosoft-entra-id\n\naws:\n  region: us-east-1\n  s3:\n    buckets:\n      - name: my-app-bucket\n  sqs:\n    queues:\n      - name: my-app-events\n  iam:\n    users:\n      - user_name: developer\n        create_access_key: true\n    roles:\n      - role_name: lambda-execution-role\n```\n\n### Auth\n\nTokens map to users. Pass them as `Authorization: Bearer \u003Ctoken>` or `Authorization: token \u003Ctoken>`. When no tokens are configured, a default `test_token_admin` is created for the `admin` user.\n\nEach service also has a fallback user. If no token is provided, requests authenticate as the first seeded user.\n\n## HTTPS with portless\n\n[portless](https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fportless) gives emulators trusted HTTPS URLs with auto-generated certs. Use the `--portless` flag to auto-register each service as a portless alias:\n\n```bash\nnpx emulate start --portless\n# github  https:\u002F\u002Fgithub.emulate.localhost\n# google  https:\u002F\u002Fgoogle.emulate.localhost\n# ...\n```\n\nThis requires the portless proxy to be running (`portless proxy start`). If portless is not installed, emulate will prompt to install it.\n\nThe `--portless` flag overwrites any existing portless aliases matching `*.emulate`. Aliases are removed automatically when emulate shuts down.\n\nFor a single service behind portless:\n\n```bash\nportless github.emulate emulate start --service github\n```\n\nFor a custom base URL without portless (any reverse proxy):\n\n```bash\nnpx emulate start --base-url \"https:\u002F\u002F{service}.myproxy.test\"\n# or\nEMULATE_BASE_URL=\"https:\u002F\u002F{service}.myproxy.test\" npx emulate start\n```\n\nThe `PORTLESS_URL` env var is automatically set by the `portless` CLI wrapper when running a command through it (e.g. `portless github.emulate emulate start`), typically to a value like `https:\u002F\u002F{service}.emulate.localhost`. It supports `{service}` interpolation, just like `--base-url` and `EMULATE_BASE_URL`. When no explicit `baseUrl` is provided, it is used as a fallback.\n\nPer-service overrides in the seed config (these take highest priority over all other base URL sources):\n\n```yaml\ngithub:\n  baseUrl: https:\u002F\u002Fgithub.emulate.localhost\ngoogle:\n  baseUrl: https:\u002F\u002Fgoogle.emulate.localhost\n```\n\n## Pointing Your App at the Emulator\n\nSet environment variables to override real service URLs:\n\n```bash\nVERCEL_EMULATOR_URL=http:\u002F\u002Flocalhost:4000\nGITHUB_EMULATOR_URL=http:\u002F\u002Flocalhost:4001\nGOOGLE_EMULATOR_URL=http:\u002F\u002Flocalhost:4002\nSLACK_EMULATOR_URL=http:\u002F\u002Flocalhost:4003\nAPPLE_EMULATOR_URL=http:\u002F\u002Flocalhost:4004\nMICROSOFT_EMULATOR_URL=http:\u002F\u002Flocalhost:4005\nAWS_EMULATOR_URL=http:\u002F\u002Flocalhost:4007\nLINEAR_EMULATOR_URL=http:\u002F\u002Flocalhost:4012\n```\n\nThen use these in your app to construct API and OAuth URLs. See each service's skill for SDK-specific override instructions.\n\n## Framework Integration (Embedded Mode)\n\nThe `@emulators\u002Fadapter-next` package embeds emulators directly into a Next.js app on the same origin. See the **next** skill (`skills\u002Fnext\u002FSKILL.md`) for full setup, Auth.js configuration, persistence, and font tracing details.\n\nThe `@emulators\u002Fadapter-nuxt` package embeds emulators directly into a Nuxt app on the same origin. See the **nuxt** skill (`skills\u002Fnuxt\u002FSKILL.md`) for the server route, Nuxt config, OAuth configuration, and persistence setup.\n\n## Persistence\n\nBy default, all emulator state is in-memory. For persistence across process restarts and serverless cold starts, use a `PersistenceAdapter`.\n\n### Built-in file persistence\n\n```typescript\nimport { filePersistence } from '@emulators\u002Fcore'\n\n\u002F\u002F CLI or local dev: persists to a JSON file\nconst adapter = filePersistence('.emulate\u002Fstate.json')\n```\n\n### Custom adapters\n\n```typescript\nimport type { PersistenceAdapter } from '@emulators\u002Fcore'\n\nconst kvAdapter: PersistenceAdapter = {\n  async load() { return await kv.get('emulate-state') },\n  async save(data) { await kv.set('emulate-state', data) },\n}\n```\n\nState is loaded on cold start and saved after every mutating request (POST, PUT, PATCH, DELETE). Saves are serialized to prevent race conditions.\n\n## Architecture\n\n```\npackages\u002F\n  emulate\u002F           # CLI entry point + programmatic API\n  @emulators\u002F\n    core\u002F            # HTTP server, Store, plugin interface, middleware\n    adapter-next\u002F    # Next.js App Router integration\n    adapter-nuxt\u002F    # Nuxt server route integration\n    vercel\u002F          # Vercel API service plugin\n    github\u002F          # GitHub API service plugin\n    google\u002F          # Google OAuth 2.0 \u002F OIDC plugin\n    slack\u002F           # Slack Web API, OAuth, incoming webhooks plugin\n    linear\u002F          # Linear GraphQL API, OAuth, webhooks plugin\n    twilio\u002F          # Twilio Messaging, Verify, Voice, webhooks plugin\n    apple\u002F           # Sign in with Apple \u002F OIDC plugin\n    microsoft\u002F       # Microsoft Entra ID OAuth 2.0 \u002F OIDC plugin\n    aws\u002F             # AWS S3, SQS, IAM, STS plugin\n```\n\nThe core provides a generic `Store` with typed `Collection\u003CT>` instances supporting CRUD, indexing, filtering, and pagination. Each service plugin registers routes with the shared internal app and uses the store for state.\n",{"data":52,"body":54},{"name":4,"description":6,"allowed-tools":53},"Bash(npx emulate:*)",{"type":55,"children":56},"root",[57,66,72,79,109,114,318,324,584,591,739,760,803,809,833,846,1183,1188,1451,1457,1529,1535,2115,2121,2126,2181,2202,2208,4495,4501,4537,4542,4548,4568,4620,4633,4653,4658,4694,4699,4785,4847,4852,4914,4920,4925,5066,5071,5077,5105,5131,5137,5149,5155,5255,5261,5502,5507,5513,5523,5544],{"type":58,"tag":59,"props":60,"children":62},"element","h1",{"id":61},"service-emulation-with-emulate",[63],{"type":64,"value":65},"text","Service Emulation with emulate",{"type":58,"tag":67,"props":68,"children":69},"p",{},[70],{"type":64,"value":71},"Local drop-in replacement services for CI and no-network sandboxes. Fully stateful, production-fidelity API emulation, not mocks.",{"type":58,"tag":73,"props":74,"children":76},"h2",{"id":75},"quick-start",[77],{"type":64,"value":78},"Quick Start",{"type":58,"tag":80,"props":81,"children":86},"pre",{"className":82,"code":83,"language":84,"meta":85,"style":85},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npx emulate\n","bash","",[87],{"type":58,"tag":88,"props":89,"children":90},"code",{"__ignoreMap":85},[91],{"type":58,"tag":92,"props":93,"children":96},"span",{"class":94,"line":95},"line",1,[97,103],{"type":58,"tag":92,"props":98,"children":100},{"style":99},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[101],{"type":64,"value":102},"npx",{"type":58,"tag":92,"props":104,"children":106},{"style":105},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[107],{"type":64,"value":108}," emulate\n",{"type":58,"tag":67,"props":110,"children":111},{},[112],{"type":64,"value":113},"All services start with sensible defaults:",{"type":58,"tag":115,"props":116,"children":117},"table",{},[118,137],{"type":58,"tag":119,"props":120,"children":121},"thead",{},[122],{"type":58,"tag":123,"props":124,"children":125},"tr",{},[126,132],{"type":58,"tag":127,"props":128,"children":129},"th",{},[130],{"type":64,"value":131},"Service",{"type":58,"tag":127,"props":133,"children":134},{},[135],{"type":64,"value":136},"Default Port",{"type":58,"tag":138,"props":139,"children":140},"tbody",{},[141,155,167,180,192,204,216,229,241,254,267,280,293,305],{"type":58,"tag":123,"props":142,"children":143},{},[144,150],{"type":58,"tag":145,"props":146,"children":147},"td",{},[148],{"type":64,"value":149},"Vercel",{"type":58,"tag":145,"props":151,"children":152},{},[153],{"type":64,"value":154},"4000",{"type":58,"tag":123,"props":156,"children":157},{},[158,162],{"type":58,"tag":145,"props":159,"children":160},{},[161],{"type":64,"value":17},{"type":58,"tag":145,"props":163,"children":164},{},[165],{"type":64,"value":166},"4001",{"type":58,"tag":123,"props":168,"children":169},{},[170,175],{"type":58,"tag":145,"props":171,"children":172},{},[173],{"type":64,"value":174},"Google",{"type":58,"tag":145,"props":176,"children":177},{},[178],{"type":64,"value":179},"4002",{"type":58,"tag":123,"props":181,"children":182},{},[183,187],{"type":58,"tag":145,"props":184,"children":185},{},[186],{"type":64,"value":26},{"type":58,"tag":145,"props":188,"children":189},{},[190],{"type":64,"value":191},"4003",{"type":58,"tag":123,"props":193,"children":194},{},[195,199],{"type":58,"tag":145,"props":196,"children":197},{},[198],{"type":64,"value":32},{"type":58,"tag":145,"props":200,"children":201},{},[202],{"type":64,"value":203},"4004",{"type":58,"tag":123,"props":205,"children":206},{},[207,211],{"type":58,"tag":145,"props":208,"children":209},{},[210],{"type":64,"value":23},{"type":58,"tag":145,"props":212,"children":213},{},[214],{"type":64,"value":215},"4005",{"type":58,"tag":123,"props":217,"children":218},{},[219,224],{"type":58,"tag":145,"props":220,"children":221},{},[222],{"type":64,"value":223},"Okta",{"type":58,"tag":145,"props":225,"children":226},{},[227],{"type":64,"value":228},"4006",{"type":58,"tag":123,"props":230,"children":231},{},[232,236],{"type":58,"tag":145,"props":233,"children":234},{},[235],{"type":64,"value":35},{"type":58,"tag":145,"props":237,"children":238},{},[239],{"type":64,"value":240},"4007",{"type":58,"tag":123,"props":242,"children":243},{},[244,249],{"type":58,"tag":145,"props":245,"children":246},{},[247],{"type":64,"value":248},"Resend",{"type":58,"tag":145,"props":250,"children":251},{},[252],{"type":64,"value":253},"4008",{"type":58,"tag":123,"props":255,"children":256},{},[257,262],{"type":58,"tag":145,"props":258,"children":259},{},[260],{"type":64,"value":261},"Stripe",{"type":58,"tag":145,"props":263,"children":264},{},[265],{"type":64,"value":266},"4009",{"type":58,"tag":123,"props":268,"children":269},{},[270,275],{"type":58,"tag":145,"props":271,"children":272},{},[273],{"type":64,"value":274},"MongoDB Atlas",{"type":58,"tag":145,"props":276,"children":277},{},[278],{"type":64,"value":279},"4010",{"type":58,"tag":123,"props":281,"children":282},{},[283,288],{"type":58,"tag":145,"props":284,"children":285},{},[286],{"type":64,"value":287},"Clerk",{"type":58,"tag":145,"props":289,"children":290},{},[291],{"type":64,"value":292},"4011",{"type":58,"tag":123,"props":294,"children":295},{},[296,300],{"type":58,"tag":145,"props":297,"children":298},{},[299],{"type":64,"value":13},{"type":58,"tag":145,"props":301,"children":302},{},[303],{"type":64,"value":304},"4012",{"type":58,"tag":123,"props":306,"children":307},{},[308,313],{"type":58,"tag":145,"props":309,"children":310},{},[311],{"type":64,"value":312},"Twilio",{"type":58,"tag":145,"props":314,"children":315},{},[316],{"type":64,"value":317},"4013",{"type":58,"tag":73,"props":319,"children":321},{"id":320},"cli",[322],{"type":64,"value":323},"CLI",{"type":58,"tag":80,"props":325,"children":327},{"className":82,"code":326,"language":84,"meta":85,"style":85},"# Start all services (zero-config)\nnpx emulate\n\n# Start specific services\nnpx emulate --service vercel,github\n\n# Custom base port (auto-increments per service)\nnpx emulate --port 3000\n\n# Use a seed config file\nnpx emulate --seed config.yaml\n\n# Generate a starter config\nnpx emulate init\n\n# Generate config for a specific service\nnpx emulate init --service vercel\n\n# List available services\nnpx emulate list\n",[328],{"type":58,"tag":88,"props":329,"children":330},{"__ignoreMap":85},[331,340,352,362,371,394,402,411,434,442,451,473,481,490,507,515,524,550,558,567],{"type":58,"tag":92,"props":332,"children":333},{"class":94,"line":95},[334],{"type":58,"tag":92,"props":335,"children":337},{"style":336},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[338],{"type":64,"value":339},"# Start all services (zero-config)\n",{"type":58,"tag":92,"props":341,"children":343},{"class":94,"line":342},2,[344,348],{"type":58,"tag":92,"props":345,"children":346},{"style":99},[347],{"type":64,"value":102},{"type":58,"tag":92,"props":349,"children":350},{"style":105},[351],{"type":64,"value":108},{"type":58,"tag":92,"props":353,"children":355},{"class":94,"line":354},3,[356],{"type":58,"tag":92,"props":357,"children":359},{"emptyLinePlaceholder":358},true,[360],{"type":64,"value":361},"\n",{"type":58,"tag":92,"props":363,"children":365},{"class":94,"line":364},4,[366],{"type":58,"tag":92,"props":367,"children":368},{"style":336},[369],{"type":64,"value":370},"# Start specific services\n",{"type":58,"tag":92,"props":372,"children":374},{"class":94,"line":373},5,[375,379,384,389],{"type":58,"tag":92,"props":376,"children":377},{"style":99},[378],{"type":64,"value":102},{"type":58,"tag":92,"props":380,"children":381},{"style":105},[382],{"type":64,"value":383}," emulate",{"type":58,"tag":92,"props":385,"children":386},{"style":105},[387],{"type":64,"value":388}," --service",{"type":58,"tag":92,"props":390,"children":391},{"style":105},[392],{"type":64,"value":393}," vercel,github\n",{"type":58,"tag":92,"props":395,"children":397},{"class":94,"line":396},6,[398],{"type":58,"tag":92,"props":399,"children":400},{"emptyLinePlaceholder":358},[401],{"type":64,"value":361},{"type":58,"tag":92,"props":403,"children":405},{"class":94,"line":404},7,[406],{"type":58,"tag":92,"props":407,"children":408},{"style":336},[409],{"type":64,"value":410},"# Custom base port (auto-increments per service)\n",{"type":58,"tag":92,"props":412,"children":414},{"class":94,"line":413},8,[415,419,423,428],{"type":58,"tag":92,"props":416,"children":417},{"style":99},[418],{"type":64,"value":102},{"type":58,"tag":92,"props":420,"children":421},{"style":105},[422],{"type":64,"value":383},{"type":58,"tag":92,"props":424,"children":425},{"style":105},[426],{"type":64,"value":427}," --port",{"type":58,"tag":92,"props":429,"children":431},{"style":430},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[432],{"type":64,"value":433}," 3000\n",{"type":58,"tag":92,"props":435,"children":437},{"class":94,"line":436},9,[438],{"type":58,"tag":92,"props":439,"children":440},{"emptyLinePlaceholder":358},[441],{"type":64,"value":361},{"type":58,"tag":92,"props":443,"children":445},{"class":94,"line":444},10,[446],{"type":58,"tag":92,"props":447,"children":448},{"style":336},[449],{"type":64,"value":450},"# Use a seed config file\n",{"type":58,"tag":92,"props":452,"children":454},{"class":94,"line":453},11,[455,459,463,468],{"type":58,"tag":92,"props":456,"children":457},{"style":99},[458],{"type":64,"value":102},{"type":58,"tag":92,"props":460,"children":461},{"style":105},[462],{"type":64,"value":383},{"type":58,"tag":92,"props":464,"children":465},{"style":105},[466],{"type":64,"value":467}," --seed",{"type":58,"tag":92,"props":469,"children":470},{"style":105},[471],{"type":64,"value":472}," config.yaml\n",{"type":58,"tag":92,"props":474,"children":476},{"class":94,"line":475},12,[477],{"type":58,"tag":92,"props":478,"children":479},{"emptyLinePlaceholder":358},[480],{"type":64,"value":361},{"type":58,"tag":92,"props":482,"children":484},{"class":94,"line":483},13,[485],{"type":58,"tag":92,"props":486,"children":487},{"style":336},[488],{"type":64,"value":489},"# Generate a starter config\n",{"type":58,"tag":92,"props":491,"children":493},{"class":94,"line":492},14,[494,498,502],{"type":58,"tag":92,"props":495,"children":496},{"style":99},[497],{"type":64,"value":102},{"type":58,"tag":92,"props":499,"children":500},{"style":105},[501],{"type":64,"value":383},{"type":58,"tag":92,"props":503,"children":504},{"style":105},[505],{"type":64,"value":506}," init\n",{"type":58,"tag":92,"props":508,"children":510},{"class":94,"line":509},15,[511],{"type":58,"tag":92,"props":512,"children":513},{"emptyLinePlaceholder":358},[514],{"type":64,"value":361},{"type":58,"tag":92,"props":516,"children":518},{"class":94,"line":517},16,[519],{"type":58,"tag":92,"props":520,"children":521},{"style":336},[522],{"type":64,"value":523},"# Generate config for a specific service\n",{"type":58,"tag":92,"props":525,"children":527},{"class":94,"line":526},17,[528,532,536,541,545],{"type":58,"tag":92,"props":529,"children":530},{"style":99},[531],{"type":64,"value":102},{"type":58,"tag":92,"props":533,"children":534},{"style":105},[535],{"type":64,"value":383},{"type":58,"tag":92,"props":537,"children":538},{"style":105},[539],{"type":64,"value":540}," init",{"type":58,"tag":92,"props":542,"children":543},{"style":105},[544],{"type":64,"value":388},{"type":58,"tag":92,"props":546,"children":547},{"style":105},[548],{"type":64,"value":549}," vercel\n",{"type":58,"tag":92,"props":551,"children":553},{"class":94,"line":552},18,[554],{"type":58,"tag":92,"props":555,"children":556},{"emptyLinePlaceholder":358},[557],{"type":64,"value":361},{"type":58,"tag":92,"props":559,"children":561},{"class":94,"line":560},19,[562],{"type":58,"tag":92,"props":563,"children":564},{"style":336},[565],{"type":64,"value":566},"# List available services\n",{"type":58,"tag":92,"props":568,"children":570},{"class":94,"line":569},20,[571,575,579],{"type":58,"tag":92,"props":572,"children":573},{"style":99},[574],{"type":64,"value":102},{"type":58,"tag":92,"props":576,"children":577},{"style":105},[578],{"type":64,"value":383},{"type":58,"tag":92,"props":580,"children":581},{"style":105},[582],{"type":64,"value":583}," list\n",{"type":58,"tag":585,"props":586,"children":588},"h3",{"id":587},"options",[589],{"type":64,"value":590},"Options",{"type":58,"tag":115,"props":592,"children":593},{},[594,615],{"type":58,"tag":119,"props":595,"children":596},{},[597],{"type":58,"tag":123,"props":598,"children":599},{},[600,605,610],{"type":58,"tag":127,"props":601,"children":602},{},[603],{"type":64,"value":604},"Flag",{"type":58,"tag":127,"props":606,"children":607},{},[608],{"type":64,"value":609},"Default",{"type":58,"tag":127,"props":611,"children":612},{},[613],{"type":64,"value":614},"Description",{"type":58,"tag":138,"props":616,"children":617},{},[618,643,665,687,717],{"type":58,"tag":123,"props":619,"children":620},{},[621,630,638],{"type":58,"tag":145,"props":622,"children":623},{},[624],{"type":58,"tag":88,"props":625,"children":627},{"className":626},[],[628],{"type":64,"value":629},"-p, --port",{"type":58,"tag":145,"props":631,"children":632},{},[633],{"type":58,"tag":88,"props":634,"children":636},{"className":635},[],[637],{"type":64,"value":154},{"type":58,"tag":145,"props":639,"children":640},{},[641],{"type":64,"value":642},"Base port (auto-increments per service)",{"type":58,"tag":123,"props":644,"children":645},{},[646,655,660],{"type":58,"tag":145,"props":647,"children":648},{},[649],{"type":58,"tag":88,"props":650,"children":652},{"className":651},[],[653],{"type":64,"value":654},"-s, --service",{"type":58,"tag":145,"props":656,"children":657},{},[658],{"type":64,"value":659},"all",{"type":58,"tag":145,"props":661,"children":662},{},[663],{"type":64,"value":664},"Comma-separated services to enable",{"type":58,"tag":123,"props":666,"children":667},{},[668,677,682],{"type":58,"tag":145,"props":669,"children":670},{},[671],{"type":58,"tag":88,"props":672,"children":674},{"className":673},[],[675],{"type":64,"value":676},"--seed",{"type":58,"tag":145,"props":678,"children":679},{},[680],{"type":64,"value":681},"auto-detect",{"type":58,"tag":145,"props":683,"children":684},{},[685],{"type":64,"value":686},"Path to seed config (YAML or JSON)",{"type":58,"tag":123,"props":688,"children":689},{},[690,699,704],{"type":58,"tag":145,"props":691,"children":692},{},[693],{"type":58,"tag":88,"props":694,"children":696},{"className":695},[],[697],{"type":64,"value":698},"--base-url",{"type":58,"tag":145,"props":700,"children":701},{},[702],{"type":64,"value":703},"none",{"type":58,"tag":145,"props":705,"children":706},{},[707,709,715],{"type":64,"value":708},"Override advertised base URL (supports ",{"type":58,"tag":88,"props":710,"children":712},{"className":711},[],[713],{"type":64,"value":714},"{service}",{"type":64,"value":716}," template)",{"type":58,"tag":123,"props":718,"children":719},{},[720,729,734],{"type":58,"tag":145,"props":721,"children":722},{},[723],{"type":58,"tag":88,"props":724,"children":726},{"className":725},[],[727],{"type":64,"value":728},"--portless",{"type":58,"tag":145,"props":730,"children":731},{},[732],{"type":64,"value":733},"off",{"type":58,"tag":145,"props":735,"children":736},{},[737],{"type":64,"value":738},"Serve over HTTPS via portless (auto-registers aliases)",{"type":58,"tag":67,"props":740,"children":741},{},[742,744,750,752,758],{"type":64,"value":743},"The port can also be set via ",{"type":58,"tag":88,"props":745,"children":747},{"className":746},[],[748],{"type":64,"value":749},"EMULATE_PORT",{"type":64,"value":751}," or ",{"type":58,"tag":88,"props":753,"children":755},{"className":754},[],[756],{"type":64,"value":757},"PORT",{"type":64,"value":759}," environment variables.",{"type":58,"tag":67,"props":761,"children":762},{},[763,765,770,772,778,780,785,787,793,795,801],{"type":64,"value":764},"The advertised base URL (used in OAuth redirects, webhook URLs, etc.) can be overridden via ",{"type":58,"tag":88,"props":766,"children":768},{"className":767},[],[769],{"type":64,"value":698},{"type":64,"value":771},", the ",{"type":58,"tag":88,"props":773,"children":775},{"className":774},[],[776],{"type":64,"value":777},"EMULATE_BASE_URL",{"type":64,"value":779}," env var (supports ",{"type":58,"tag":88,"props":781,"children":783},{"className":782},[],[784],{"type":64,"value":714},{"type":64,"value":786}," template), or per-service ",{"type":58,"tag":88,"props":788,"children":790},{"className":789},[],[791],{"type":64,"value":792},"baseUrl",{"type":64,"value":794}," in the seed config. When running under portless, the ",{"type":58,"tag":88,"props":796,"children":798},{"className":797},[],[799],{"type":64,"value":800},"PORTLESS_URL",{"type":64,"value":802}," env var is also detected automatically.",{"type":58,"tag":73,"props":804,"children":806},{"id":805},"programmatic-api",[807],{"type":64,"value":808},"Programmatic API",{"type":58,"tag":80,"props":810,"children":812},{"className":82,"code":811,"language":84,"meta":85,"style":85},"npm install emulate\n",[813],{"type":58,"tag":88,"props":814,"children":815},{"__ignoreMap":85},[816],{"type":58,"tag":92,"props":817,"children":818},{"class":94,"line":95},[819,824,829],{"type":58,"tag":92,"props":820,"children":821},{"style":99},[822],{"type":64,"value":823},"npm",{"type":58,"tag":92,"props":825,"children":826},{"style":105},[827],{"type":64,"value":828}," install",{"type":58,"tag":92,"props":830,"children":831},{"style":105},[832],{"type":64,"value":108},{"type":58,"tag":67,"props":834,"children":835},{},[836,838,844],{"type":64,"value":837},"Each call to ",{"type":58,"tag":88,"props":839,"children":841},{"className":840},[],[842],{"type":64,"value":843},"createEmulator",{"type":64,"value":845}," starts a single service:",{"type":58,"tag":80,"props":847,"children":851},{"className":848,"code":849,"language":850,"meta":85,"style":85},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { createEmulator } from 'emulate'\n\nconst github = await createEmulator({ service: 'github', port: 4001 })\nconst vercel = await createEmulator({ service: 'vercel', port: 4002 })\n\ngithub.url   \u002F\u002F 'http:\u002F\u002Flocalhost:4001'\nvercel.url   \u002F\u002F 'http:\u002F\u002Flocalhost:4002'\n\nawait github.close()\nawait vercel.close()\n","typescript",[852],{"type":58,"tag":88,"props":853,"children":854},{"__ignoreMap":85},[855,900,907,998,1076,1083,1105,1125,1132,1159],{"type":58,"tag":92,"props":856,"children":857},{"class":94,"line":95},[858,864,870,876,881,886,891,895],{"type":58,"tag":92,"props":859,"children":861},{"style":860},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[862],{"type":64,"value":863},"import",{"type":58,"tag":92,"props":865,"children":867},{"style":866},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[868],{"type":64,"value":869}," {",{"type":58,"tag":92,"props":871,"children":873},{"style":872},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[874],{"type":64,"value":875}," createEmulator",{"type":58,"tag":92,"props":877,"children":878},{"style":866},[879],{"type":64,"value":880}," }",{"type":58,"tag":92,"props":882,"children":883},{"style":860},[884],{"type":64,"value":885}," from",{"type":58,"tag":92,"props":887,"children":888},{"style":866},[889],{"type":64,"value":890}," '",{"type":58,"tag":92,"props":892,"children":893},{"style":105},[894],{"type":64,"value":4},{"type":58,"tag":92,"props":896,"children":897},{"style":866},[898],{"type":64,"value":899},"'\n",{"type":58,"tag":92,"props":901,"children":902},{"class":94,"line":342},[903],{"type":58,"tag":92,"props":904,"children":905},{"emptyLinePlaceholder":358},[906],{"type":64,"value":361},{"type":58,"tag":92,"props":908,"children":909},{"class":94,"line":354},[910,916,921,926,931,936,941,946,952,957,961,965,970,975,980,984,989,993],{"type":58,"tag":92,"props":911,"children":913},{"style":912},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[914],{"type":64,"value":915},"const",{"type":58,"tag":92,"props":917,"children":918},{"style":872},[919],{"type":64,"value":920}," github ",{"type":58,"tag":92,"props":922,"children":923},{"style":866},[924],{"type":64,"value":925},"=",{"type":58,"tag":92,"props":927,"children":928},{"style":860},[929],{"type":64,"value":930}," await",{"type":58,"tag":92,"props":932,"children":934},{"style":933},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[935],{"type":64,"value":875},{"type":58,"tag":92,"props":937,"children":938},{"style":872},[939],{"type":64,"value":940},"(",{"type":58,"tag":92,"props":942,"children":943},{"style":866},[944],{"type":64,"value":945},"{",{"type":58,"tag":92,"props":947,"children":949},{"style":948},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[950],{"type":64,"value":951}," service",{"type":58,"tag":92,"props":953,"children":954},{"style":866},[955],{"type":64,"value":956},":",{"type":58,"tag":92,"props":958,"children":959},{"style":866},[960],{"type":64,"value":890},{"type":58,"tag":92,"props":962,"children":963},{"style":105},[964],{"type":64,"value":18},{"type":58,"tag":92,"props":966,"children":967},{"style":866},[968],{"type":64,"value":969},"'",{"type":58,"tag":92,"props":971,"children":972},{"style":866},[973],{"type":64,"value":974},",",{"type":58,"tag":92,"props":976,"children":977},{"style":948},[978],{"type":64,"value":979}," port",{"type":58,"tag":92,"props":981,"children":982},{"style":866},[983],{"type":64,"value":956},{"type":58,"tag":92,"props":985,"children":986},{"style":430},[987],{"type":64,"value":988}," 4001",{"type":58,"tag":92,"props":990,"children":991},{"style":866},[992],{"type":64,"value":880},{"type":58,"tag":92,"props":994,"children":995},{"style":872},[996],{"type":64,"value":997},")\n",{"type":58,"tag":92,"props":999,"children":1000},{"class":94,"line":364},[1001,1005,1010,1014,1018,1022,1026,1030,1034,1038,1042,1047,1051,1055,1059,1063,1068,1072],{"type":58,"tag":92,"props":1002,"children":1003},{"style":912},[1004],{"type":64,"value":915},{"type":58,"tag":92,"props":1006,"children":1007},{"style":872},[1008],{"type":64,"value":1009}," vercel ",{"type":58,"tag":92,"props":1011,"children":1012},{"style":866},[1013],{"type":64,"value":925},{"type":58,"tag":92,"props":1015,"children":1016},{"style":860},[1017],{"type":64,"value":930},{"type":58,"tag":92,"props":1019,"children":1020},{"style":933},[1021],{"type":64,"value":875},{"type":58,"tag":92,"props":1023,"children":1024},{"style":872},[1025],{"type":64,"value":940},{"type":58,"tag":92,"props":1027,"children":1028},{"style":866},[1029],{"type":64,"value":945},{"type":58,"tag":92,"props":1031,"children":1032},{"style":948},[1033],{"type":64,"value":951},{"type":58,"tag":92,"props":1035,"children":1036},{"style":866},[1037],{"type":64,"value":956},{"type":58,"tag":92,"props":1039,"children":1040},{"style":866},[1041],{"type":64,"value":890},{"type":58,"tag":92,"props":1043,"children":1044},{"style":105},[1045],{"type":64,"value":1046},"vercel",{"type":58,"tag":92,"props":1048,"children":1049},{"style":866},[1050],{"type":64,"value":969},{"type":58,"tag":92,"props":1052,"children":1053},{"style":866},[1054],{"type":64,"value":974},{"type":58,"tag":92,"props":1056,"children":1057},{"style":948},[1058],{"type":64,"value":979},{"type":58,"tag":92,"props":1060,"children":1061},{"style":866},[1062],{"type":64,"value":956},{"type":58,"tag":92,"props":1064,"children":1065},{"style":430},[1066],{"type":64,"value":1067}," 4002",{"type":58,"tag":92,"props":1069,"children":1070},{"style":866},[1071],{"type":64,"value":880},{"type":58,"tag":92,"props":1073,"children":1074},{"style":872},[1075],{"type":64,"value":997},{"type":58,"tag":92,"props":1077,"children":1078},{"class":94,"line":373},[1079],{"type":58,"tag":92,"props":1080,"children":1081},{"emptyLinePlaceholder":358},[1082],{"type":64,"value":361},{"type":58,"tag":92,"props":1084,"children":1085},{"class":94,"line":396},[1086,1090,1095,1100],{"type":58,"tag":92,"props":1087,"children":1088},{"style":872},[1089],{"type":64,"value":18},{"type":58,"tag":92,"props":1091,"children":1092},{"style":866},[1093],{"type":64,"value":1094},".",{"type":58,"tag":92,"props":1096,"children":1097},{"style":872},[1098],{"type":64,"value":1099},"url   ",{"type":58,"tag":92,"props":1101,"children":1102},{"style":336},[1103],{"type":64,"value":1104},"\u002F\u002F 'http:\u002F\u002Flocalhost:4001'\n",{"type":58,"tag":92,"props":1106,"children":1107},{"class":94,"line":404},[1108,1112,1116,1120],{"type":58,"tag":92,"props":1109,"children":1110},{"style":872},[1111],{"type":64,"value":1046},{"type":58,"tag":92,"props":1113,"children":1114},{"style":866},[1115],{"type":64,"value":1094},{"type":58,"tag":92,"props":1117,"children":1118},{"style":872},[1119],{"type":64,"value":1099},{"type":58,"tag":92,"props":1121,"children":1122},{"style":336},[1123],{"type":64,"value":1124},"\u002F\u002F 'http:\u002F\u002Flocalhost:4002'\n",{"type":58,"tag":92,"props":1126,"children":1127},{"class":94,"line":413},[1128],{"type":58,"tag":92,"props":1129,"children":1130},{"emptyLinePlaceholder":358},[1131],{"type":64,"value":361},{"type":58,"tag":92,"props":1133,"children":1134},{"class":94,"line":436},[1135,1140,1145,1149,1154],{"type":58,"tag":92,"props":1136,"children":1137},{"style":860},[1138],{"type":64,"value":1139},"await",{"type":58,"tag":92,"props":1141,"children":1142},{"style":872},[1143],{"type":64,"value":1144}," github",{"type":58,"tag":92,"props":1146,"children":1147},{"style":866},[1148],{"type":64,"value":1094},{"type":58,"tag":92,"props":1150,"children":1151},{"style":933},[1152],{"type":64,"value":1153},"close",{"type":58,"tag":92,"props":1155,"children":1156},{"style":872},[1157],{"type":64,"value":1158},"()\n",{"type":58,"tag":92,"props":1160,"children":1161},{"class":94,"line":444},[1162,1166,1171,1175,1179],{"type":58,"tag":92,"props":1163,"children":1164},{"style":860},[1165],{"type":64,"value":1139},{"type":58,"tag":92,"props":1167,"children":1168},{"style":872},[1169],{"type":64,"value":1170}," vercel",{"type":58,"tag":92,"props":1172,"children":1173},{"style":866},[1174],{"type":64,"value":1094},{"type":58,"tag":92,"props":1176,"children":1177},{"style":933},[1178],{"type":64,"value":1153},{"type":58,"tag":92,"props":1180,"children":1181},{"style":872},[1182],{"type":64,"value":1158},{"type":58,"tag":585,"props":1184,"children":1186},{"id":1185},"options-1",[1187],{"type":64,"value":590},{"type":58,"tag":115,"props":1189,"children":1190},{},[1191,1210],{"type":58,"tag":119,"props":1192,"children":1193},{},[1194],{"type":58,"tag":123,"props":1195,"children":1196},{},[1197,1202,1206],{"type":58,"tag":127,"props":1198,"children":1199},{},[1200],{"type":64,"value":1201},"Option",{"type":58,"tag":127,"props":1203,"children":1204},{},[1205],{"type":64,"value":609},{"type":58,"tag":127,"props":1207,"children":1208},{},[1209],{"type":64,"value":614},{"type":58,"tag":138,"props":1211,"children":1212},{},[1213,1336,1361,1382],{"type":58,"tag":123,"props":1214,"children":1215},{},[1216,1225,1234],{"type":58,"tag":145,"props":1217,"children":1218},{},[1219],{"type":58,"tag":88,"props":1220,"children":1222},{"className":1221},[],[1223],{"type":64,"value":1224},"service",{"type":58,"tag":145,"props":1226,"children":1227},{},[1228],{"type":58,"tag":1229,"props":1230,"children":1231},"em",{},[1232],{"type":64,"value":1233},"(required)",{"type":58,"tag":145,"props":1235,"children":1236},{},[1237,1243,1245,1251,1252,1258,1259,1265,1266,1272,1273,1279,1280,1286,1287,1293,1294,1300,1301,1307,1308,1314,1315,1321,1322,1328,1330],{"type":58,"tag":88,"props":1238,"children":1240},{"className":1239},[],[1241],{"type":64,"value":1242},"'vercel'",{"type":64,"value":1244},", ",{"type":58,"tag":88,"props":1246,"children":1248},{"className":1247},[],[1249],{"type":64,"value":1250},"'github'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1253,"children":1255},{"className":1254},[],[1256],{"type":64,"value":1257},"'google'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":64,"value":1264},"'slack'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1267,"children":1269},{"className":1268},[],[1270],{"type":64,"value":1271},"'apple'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1274,"children":1276},{"className":1275},[],[1277],{"type":64,"value":1278},"'microsoft'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1281,"children":1283},{"className":1282},[],[1284],{"type":64,"value":1285},"'okta'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1288,"children":1290},{"className":1289},[],[1291],{"type":64,"value":1292},"'aws'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1295,"children":1297},{"className":1296},[],[1298],{"type":64,"value":1299},"'resend'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":64,"value":1306},"'stripe'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1309,"children":1311},{"className":1310},[],[1312],{"type":64,"value":1313},"'mongoatlas'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1316,"children":1318},{"className":1317},[],[1319],{"type":64,"value":1320},"'clerk'",{"type":64,"value":1244},{"type":58,"tag":88,"props":1323,"children":1325},{"className":1324},[],[1326],{"type":64,"value":1327},"'linear'",{"type":64,"value":1329},", or ",{"type":58,"tag":88,"props":1331,"children":1333},{"className":1332},[],[1334],{"type":64,"value":1335},"'twilio'",{"type":58,"tag":123,"props":1337,"children":1338},{},[1339,1348,1356],{"type":58,"tag":145,"props":1340,"children":1341},{},[1342],{"type":58,"tag":88,"props":1343,"children":1345},{"className":1344},[],[1346],{"type":64,"value":1347},"port",{"type":58,"tag":145,"props":1349,"children":1350},{},[1351],{"type":58,"tag":88,"props":1352,"children":1354},{"className":1353},[],[1355],{"type":64,"value":154},{"type":58,"tag":145,"props":1357,"children":1358},{},[1359],{"type":64,"value":1360},"Port for the HTTP server",{"type":58,"tag":123,"props":1362,"children":1363},{},[1364,1373,1377],{"type":58,"tag":145,"props":1365,"children":1366},{},[1367],{"type":58,"tag":88,"props":1368,"children":1370},{"className":1369},[],[1371],{"type":64,"value":1372},"seed",{"type":58,"tag":145,"props":1374,"children":1375},{},[1376],{"type":64,"value":703},{"type":58,"tag":145,"props":1378,"children":1379},{},[1380],{"type":64,"value":1381},"Inline seed data (same shape as YAML config)",{"type":58,"tag":123,"props":1383,"children":1384},{},[1385,1393,1397],{"type":58,"tag":145,"props":1386,"children":1387},{},[1388],{"type":58,"tag":88,"props":1389,"children":1391},{"className":1390},[],[1392],{"type":64,"value":792},{"type":58,"tag":145,"props":1394,"children":1395},{},[1396],{"type":64,"value":703},{"type":58,"tag":145,"props":1398,"children":1399},{},[1400,1402,1407,1409,1414,1415,1420,1422,1427,1429,1434,1436,1442,1444,1450],{"type":64,"value":1401},"Override advertised base URL. Per-service ",{"type":58,"tag":88,"props":1403,"children":1405},{"className":1404},[],[1406],{"type":64,"value":792},{"type":64,"value":1408}," in seed config takes highest priority, then this option, then ",{"type":58,"tag":88,"props":1410,"children":1412},{"className":1411},[],[1413],{"type":64,"value":777},{"type":64,"value":779},{"type":58,"tag":88,"props":1416,"children":1418},{"className":1417},[],[1419],{"type":64,"value":714},{"type":64,"value":1421},"), then ",{"type":58,"tag":88,"props":1423,"children":1425},{"className":1424},[],[1426],{"type":64,"value":800},{"type":64,"value":1428}," (supports ",{"type":58,"tag":88,"props":1430,"children":1432},{"className":1431},[],[1433],{"type":64,"value":714},{"type":64,"value":1435},", automatically set by the ",{"type":58,"tag":88,"props":1437,"children":1439},{"className":1438},[],[1440],{"type":64,"value":1441},"portless",{"type":64,"value":1443}," CLI wrapper), then ",{"type":58,"tag":88,"props":1445,"children":1447},{"className":1446},[],[1448],{"type":64,"value":1449},"http:\u002F\u002Flocalhost:\u003Cport>",{"type":64,"value":1094},{"type":58,"tag":585,"props":1452,"children":1454},{"id":1453},"instance-methods",[1455],{"type":64,"value":1456},"Instance Methods",{"type":58,"tag":115,"props":1458,"children":1459},{},[1460,1475],{"type":58,"tag":119,"props":1461,"children":1462},{},[1463],{"type":58,"tag":123,"props":1464,"children":1465},{},[1466,1471],{"type":58,"tag":127,"props":1467,"children":1468},{},[1469],{"type":64,"value":1470},"Method",{"type":58,"tag":127,"props":1472,"children":1473},{},[1474],{"type":64,"value":614},{"type":58,"tag":138,"props":1476,"children":1477},{},[1478,1495,1512],{"type":58,"tag":123,"props":1479,"children":1480},{},[1481,1490],{"type":58,"tag":145,"props":1482,"children":1483},{},[1484],{"type":58,"tag":88,"props":1485,"children":1487},{"className":1486},[],[1488],{"type":64,"value":1489},"url",{"type":58,"tag":145,"props":1491,"children":1492},{},[1493],{"type":64,"value":1494},"Base URL of the running server",{"type":58,"tag":123,"props":1496,"children":1497},{},[1498,1507],{"type":58,"tag":145,"props":1499,"children":1500},{},[1501],{"type":58,"tag":88,"props":1502,"children":1504},{"className":1503},[],[1505],{"type":64,"value":1506},"reset()",{"type":58,"tag":145,"props":1508,"children":1509},{},[1510],{"type":64,"value":1511},"Wipe the store and replay seed data",{"type":58,"tag":123,"props":1513,"children":1514},{},[1515,1524],{"type":58,"tag":145,"props":1516,"children":1517},{},[1518],{"type":58,"tag":88,"props":1519,"children":1521},{"className":1520},[],[1522],{"type":64,"value":1523},"close()",{"type":58,"tag":145,"props":1525,"children":1526},{},[1527],{"type":64,"value":1528},"Shut down the HTTP server, returns a Promise",{"type":58,"tag":73,"props":1530,"children":1532},{"id":1531},"vitest-jest-setup",[1533],{"type":64,"value":1534},"Vitest \u002F Jest Setup",{"type":58,"tag":80,"props":1536,"children":1538},{"className":848,"code":1537,"language":850,"meta":85,"style":85},"import { createEmulator, type Emulator } from 'emulate'\n\nlet github: Emulator\nlet vercel: Emulator\n\nbeforeAll(async () => {\n  ;[github, vercel] = await Promise.all([\n    createEmulator({ service: 'github', port: 4001 }),\n    createEmulator({ service: 'vercel', port: 4002 }),\n  ])\n  process.env.GITHUB_EMULATOR_URL = github.url\n  process.env.VERCEL_EMULATOR_URL = vercel.url\n})\n\nafterEach(() => { github.reset(); vercel.reset() })\nafterAll(() => Promise.all([github.close(), vercel.close()]))\n",[1539],{"type":58,"tag":88,"props":1540,"children":1541},{"__ignoreMap":85},[1542,1591,1598,1619,1638,1645,1677,1733,1799,1862,1870,1914,1954,1966,1973,2045],{"type":58,"tag":92,"props":1543,"children":1544},{"class":94,"line":95},[1545,1549,1553,1557,1561,1566,1571,1575,1579,1583,1587],{"type":58,"tag":92,"props":1546,"children":1547},{"style":860},[1548],{"type":64,"value":863},{"type":58,"tag":92,"props":1550,"children":1551},{"style":866},[1552],{"type":64,"value":869},{"type":58,"tag":92,"props":1554,"children":1555},{"style":872},[1556],{"type":64,"value":875},{"type":58,"tag":92,"props":1558,"children":1559},{"style":866},[1560],{"type":64,"value":974},{"type":58,"tag":92,"props":1562,"children":1563},{"style":860},[1564],{"type":64,"value":1565}," type",{"type":58,"tag":92,"props":1567,"children":1568},{"style":872},[1569],{"type":64,"value":1570}," Emulator",{"type":58,"tag":92,"props":1572,"children":1573},{"style":866},[1574],{"type":64,"value":880},{"type":58,"tag":92,"props":1576,"children":1577},{"style":860},[1578],{"type":64,"value":885},{"type":58,"tag":92,"props":1580,"children":1581},{"style":866},[1582],{"type":64,"value":890},{"type":58,"tag":92,"props":1584,"children":1585},{"style":105},[1586],{"type":64,"value":4},{"type":58,"tag":92,"props":1588,"children":1589},{"style":866},[1590],{"type":64,"value":899},{"type":58,"tag":92,"props":1592,"children":1593},{"class":94,"line":342},[1594],{"type":58,"tag":92,"props":1595,"children":1596},{"emptyLinePlaceholder":358},[1597],{"type":64,"value":361},{"type":58,"tag":92,"props":1599,"children":1600},{"class":94,"line":354},[1601,1606,1610,1614],{"type":58,"tag":92,"props":1602,"children":1603},{"style":912},[1604],{"type":64,"value":1605},"let",{"type":58,"tag":92,"props":1607,"children":1608},{"style":872},[1609],{"type":64,"value":1144},{"type":58,"tag":92,"props":1611,"children":1612},{"style":866},[1613],{"type":64,"value":956},{"type":58,"tag":92,"props":1615,"children":1616},{"style":99},[1617],{"type":64,"value":1618}," Emulator\n",{"type":58,"tag":92,"props":1620,"children":1621},{"class":94,"line":364},[1622,1626,1630,1634],{"type":58,"tag":92,"props":1623,"children":1624},{"style":912},[1625],{"type":64,"value":1605},{"type":58,"tag":92,"props":1627,"children":1628},{"style":872},[1629],{"type":64,"value":1170},{"type":58,"tag":92,"props":1631,"children":1632},{"style":866},[1633],{"type":64,"value":956},{"type":58,"tag":92,"props":1635,"children":1636},{"style":99},[1637],{"type":64,"value":1618},{"type":58,"tag":92,"props":1639,"children":1640},{"class":94,"line":373},[1641],{"type":58,"tag":92,"props":1642,"children":1643},{"emptyLinePlaceholder":358},[1644],{"type":64,"value":361},{"type":58,"tag":92,"props":1646,"children":1647},{"class":94,"line":396},[1648,1653,1657,1662,1667,1672],{"type":58,"tag":92,"props":1649,"children":1650},{"style":933},[1651],{"type":64,"value":1652},"beforeAll",{"type":58,"tag":92,"props":1654,"children":1655},{"style":872},[1656],{"type":64,"value":940},{"type":58,"tag":92,"props":1658,"children":1659},{"style":912},[1660],{"type":64,"value":1661},"async",{"type":58,"tag":92,"props":1663,"children":1664},{"style":866},[1665],{"type":64,"value":1666}," ()",{"type":58,"tag":92,"props":1668,"children":1669},{"style":912},[1670],{"type":64,"value":1671}," =>",{"type":58,"tag":92,"props":1673,"children":1674},{"style":866},[1675],{"type":64,"value":1676}," {\n",{"type":58,"tag":92,"props":1678,"children":1679},{"class":94,"line":404},[1680,1685,1690,1694,1698,1702,1707,1711,1715,1720,1724,1728],{"type":58,"tag":92,"props":1681,"children":1682},{"style":866},[1683],{"type":64,"value":1684},"  ;",{"type":58,"tag":92,"props":1686,"children":1687},{"style":948},[1688],{"type":64,"value":1689},"[",{"type":58,"tag":92,"props":1691,"children":1692},{"style":872},[1693],{"type":64,"value":18},{"type":58,"tag":92,"props":1695,"children":1696},{"style":866},[1697],{"type":64,"value":974},{"type":58,"tag":92,"props":1699,"children":1700},{"style":872},[1701],{"type":64,"value":1170},{"type":58,"tag":92,"props":1703,"children":1704},{"style":948},[1705],{"type":64,"value":1706},"] ",{"type":58,"tag":92,"props":1708,"children":1709},{"style":866},[1710],{"type":64,"value":925},{"type":58,"tag":92,"props":1712,"children":1713},{"style":860},[1714],{"type":64,"value":930},{"type":58,"tag":92,"props":1716,"children":1717},{"style":99},[1718],{"type":64,"value":1719}," Promise",{"type":58,"tag":92,"props":1721,"children":1722},{"style":866},[1723],{"type":64,"value":1094},{"type":58,"tag":92,"props":1725,"children":1726},{"style":933},[1727],{"type":64,"value":659},{"type":58,"tag":92,"props":1729,"children":1730},{"style":948},[1731],{"type":64,"value":1732},"([\n",{"type":58,"tag":92,"props":1734,"children":1735},{"class":94,"line":413},[1736,1741,1745,1749,1753,1757,1761,1765,1769,1773,1777,1781,1785,1789,1794],{"type":58,"tag":92,"props":1737,"children":1738},{"style":933},[1739],{"type":64,"value":1740},"    createEmulator",{"type":58,"tag":92,"props":1742,"children":1743},{"style":948},[1744],{"type":64,"value":940},{"type":58,"tag":92,"props":1746,"children":1747},{"style":866},[1748],{"type":64,"value":945},{"type":58,"tag":92,"props":1750,"children":1751},{"style":948},[1752],{"type":64,"value":951},{"type":58,"tag":92,"props":1754,"children":1755},{"style":866},[1756],{"type":64,"value":956},{"type":58,"tag":92,"props":1758,"children":1759},{"style":866},[1760],{"type":64,"value":890},{"type":58,"tag":92,"props":1762,"children":1763},{"style":105},[1764],{"type":64,"value":18},{"type":58,"tag":92,"props":1766,"children":1767},{"style":866},[1768],{"type":64,"value":969},{"type":58,"tag":92,"props":1770,"children":1771},{"style":866},[1772],{"type":64,"value":974},{"type":58,"tag":92,"props":1774,"children":1775},{"style":948},[1776],{"type":64,"value":979},{"type":58,"tag":92,"props":1778,"children":1779},{"style":866},[1780],{"type":64,"value":956},{"type":58,"tag":92,"props":1782,"children":1783},{"style":430},[1784],{"type":64,"value":988},{"type":58,"tag":92,"props":1786,"children":1787},{"style":866},[1788],{"type":64,"value":880},{"type":58,"tag":92,"props":1790,"children":1791},{"style":948},[1792],{"type":64,"value":1793},")",{"type":58,"tag":92,"props":1795,"children":1796},{"style":866},[1797],{"type":64,"value":1798},",\n",{"type":58,"tag":92,"props":1800,"children":1801},{"class":94,"line":436},[1802,1806,1810,1814,1818,1822,1826,1830,1834,1838,1842,1846,1850,1854,1858],{"type":58,"tag":92,"props":1803,"children":1804},{"style":933},[1805],{"type":64,"value":1740},{"type":58,"tag":92,"props":1807,"children":1808},{"style":948},[1809],{"type":64,"value":940},{"type":58,"tag":92,"props":1811,"children":1812},{"style":866},[1813],{"type":64,"value":945},{"type":58,"tag":92,"props":1815,"children":1816},{"style":948},[1817],{"type":64,"value":951},{"type":58,"tag":92,"props":1819,"children":1820},{"style":866},[1821],{"type":64,"value":956},{"type":58,"tag":92,"props":1823,"children":1824},{"style":866},[1825],{"type":64,"value":890},{"type":58,"tag":92,"props":1827,"children":1828},{"style":105},[1829],{"type":64,"value":1046},{"type":58,"tag":92,"props":1831,"children":1832},{"style":866},[1833],{"type":64,"value":969},{"type":58,"tag":92,"props":1835,"children":1836},{"style":866},[1837],{"type":64,"value":974},{"type":58,"tag":92,"props":1839,"children":1840},{"style":948},[1841],{"type":64,"value":979},{"type":58,"tag":92,"props":1843,"children":1844},{"style":866},[1845],{"type":64,"value":956},{"type":58,"tag":92,"props":1847,"children":1848},{"style":430},[1849],{"type":64,"value":1067},{"type":58,"tag":92,"props":1851,"children":1852},{"style":866},[1853],{"type":64,"value":880},{"type":58,"tag":92,"props":1855,"children":1856},{"style":948},[1857],{"type":64,"value":1793},{"type":58,"tag":92,"props":1859,"children":1860},{"style":866},[1861],{"type":64,"value":1798},{"type":58,"tag":92,"props":1863,"children":1864},{"class":94,"line":444},[1865],{"type":58,"tag":92,"props":1866,"children":1867},{"style":948},[1868],{"type":64,"value":1869},"  ])\n",{"type":58,"tag":92,"props":1871,"children":1872},{"class":94,"line":453},[1873,1878,1882,1887,1891,1896,1901,1905,1909],{"type":58,"tag":92,"props":1874,"children":1875},{"style":872},[1876],{"type":64,"value":1877},"  process",{"type":58,"tag":92,"props":1879,"children":1880},{"style":866},[1881],{"type":64,"value":1094},{"type":58,"tag":92,"props":1883,"children":1884},{"style":872},[1885],{"type":64,"value":1886},"env",{"type":58,"tag":92,"props":1888,"children":1889},{"style":866},[1890],{"type":64,"value":1094},{"type":58,"tag":92,"props":1892,"children":1893},{"style":872},[1894],{"type":64,"value":1895},"GITHUB_EMULATOR_URL",{"type":58,"tag":92,"props":1897,"children":1898},{"style":866},[1899],{"type":64,"value":1900}," =",{"type":58,"tag":92,"props":1902,"children":1903},{"style":872},[1904],{"type":64,"value":1144},{"type":58,"tag":92,"props":1906,"children":1907},{"style":866},[1908],{"type":64,"value":1094},{"type":58,"tag":92,"props":1910,"children":1911},{"style":872},[1912],{"type":64,"value":1913},"url\n",{"type":58,"tag":92,"props":1915,"children":1916},{"class":94,"line":475},[1917,1921,1925,1929,1933,1938,1942,1946,1950],{"type":58,"tag":92,"props":1918,"children":1919},{"style":872},[1920],{"type":64,"value":1877},{"type":58,"tag":92,"props":1922,"children":1923},{"style":866},[1924],{"type":64,"value":1094},{"type":58,"tag":92,"props":1926,"children":1927},{"style":872},[1928],{"type":64,"value":1886},{"type":58,"tag":92,"props":1930,"children":1931},{"style":866},[1932],{"type":64,"value":1094},{"type":58,"tag":92,"props":1934,"children":1935},{"style":872},[1936],{"type":64,"value":1937},"VERCEL_EMULATOR_URL",{"type":58,"tag":92,"props":1939,"children":1940},{"style":866},[1941],{"type":64,"value":1900},{"type":58,"tag":92,"props":1943,"children":1944},{"style":872},[1945],{"type":64,"value":1170},{"type":58,"tag":92,"props":1947,"children":1948},{"style":866},[1949],{"type":64,"value":1094},{"type":58,"tag":92,"props":1951,"children":1952},{"style":872},[1953],{"type":64,"value":1913},{"type":58,"tag":92,"props":1955,"children":1956},{"class":94,"line":483},[1957,1962],{"type":58,"tag":92,"props":1958,"children":1959},{"style":866},[1960],{"type":64,"value":1961},"}",{"type":58,"tag":92,"props":1963,"children":1964},{"style":872},[1965],{"type":64,"value":997},{"type":58,"tag":92,"props":1967,"children":1968},{"class":94,"line":492},[1969],{"type":58,"tag":92,"props":1970,"children":1971},{"emptyLinePlaceholder":358},[1972],{"type":64,"value":361},{"type":58,"tag":92,"props":1974,"children":1975},{"class":94,"line":509},[1976,1981,1985,1990,1994,1998,2002,2006,2011,2015,2020,2024,2028,2032,2037,2041],{"type":58,"tag":92,"props":1977,"children":1978},{"style":933},[1979],{"type":64,"value":1980},"afterEach",{"type":58,"tag":92,"props":1982,"children":1983},{"style":872},[1984],{"type":64,"value":940},{"type":58,"tag":92,"props":1986,"children":1987},{"style":866},[1988],{"type":64,"value":1989},"()",{"type":58,"tag":92,"props":1991,"children":1992},{"style":912},[1993],{"type":64,"value":1671},{"type":58,"tag":92,"props":1995,"children":1996},{"style":866},[1997],{"type":64,"value":869},{"type":58,"tag":92,"props":1999,"children":2000},{"style":872},[2001],{"type":64,"value":1144},{"type":58,"tag":92,"props":2003,"children":2004},{"style":866},[2005],{"type":64,"value":1094},{"type":58,"tag":92,"props":2007,"children":2008},{"style":933},[2009],{"type":64,"value":2010},"reset",{"type":58,"tag":92,"props":2012,"children":2013},{"style":948},[2014],{"type":64,"value":1989},{"type":58,"tag":92,"props":2016,"children":2017},{"style":866},[2018],{"type":64,"value":2019},";",{"type":58,"tag":92,"props":2021,"children":2022},{"style":872},[2023],{"type":64,"value":1170},{"type":58,"tag":92,"props":2025,"children":2026},{"style":866},[2027],{"type":64,"value":1094},{"type":58,"tag":92,"props":2029,"children":2030},{"style":933},[2031],{"type":64,"value":2010},{"type":58,"tag":92,"props":2033,"children":2034},{"style":948},[2035],{"type":64,"value":2036},"() ",{"type":58,"tag":92,"props":2038,"children":2039},{"style":866},[2040],{"type":64,"value":1961},{"type":58,"tag":92,"props":2042,"children":2043},{"style":872},[2044],{"type":64,"value":997},{"type":58,"tag":92,"props":2046,"children":2047},{"class":94,"line":517},[2048,2053,2057,2061,2065,2069,2073,2077,2082,2086,2090,2094,2098,2102,2106,2110],{"type":58,"tag":92,"props":2049,"children":2050},{"style":933},[2051],{"type":64,"value":2052},"afterAll",{"type":58,"tag":92,"props":2054,"children":2055},{"style":872},[2056],{"type":64,"value":940},{"type":58,"tag":92,"props":2058,"children":2059},{"style":866},[2060],{"type":64,"value":1989},{"type":58,"tag":92,"props":2062,"children":2063},{"style":912},[2064],{"type":64,"value":1671},{"type":58,"tag":92,"props":2066,"children":2067},{"style":99},[2068],{"type":64,"value":1719},{"type":58,"tag":92,"props":2070,"children":2071},{"style":866},[2072],{"type":64,"value":1094},{"type":58,"tag":92,"props":2074,"children":2075},{"style":933},[2076],{"type":64,"value":659},{"type":58,"tag":92,"props":2078,"children":2079},{"style":872},[2080],{"type":64,"value":2081},"([github",{"type":58,"tag":92,"props":2083,"children":2084},{"style":866},[2085],{"type":64,"value":1094},{"type":58,"tag":92,"props":2087,"children":2088},{"style":933},[2089],{"type":64,"value":1153},{"type":58,"tag":92,"props":2091,"children":2092},{"style":872},[2093],{"type":64,"value":1989},{"type":58,"tag":92,"props":2095,"children":2096},{"style":866},[2097],{"type":64,"value":974},{"type":58,"tag":92,"props":2099,"children":2100},{"style":872},[2101],{"type":64,"value":1170},{"type":58,"tag":92,"props":2103,"children":2104},{"style":866},[2105],{"type":64,"value":1094},{"type":58,"tag":92,"props":2107,"children":2108},{"style":933},[2109],{"type":64,"value":1153},{"type":58,"tag":92,"props":2111,"children":2112},{"style":872},[2113],{"type":64,"value":2114},"()]))\n",{"type":58,"tag":73,"props":2116,"children":2118},{"id":2117},"configuration",[2119],{"type":64,"value":2120},"Configuration",{"type":58,"tag":67,"props":2122,"children":2123},{},[2124],{"type":64,"value":2125},"Configuration is optional. The CLI auto-detects config files in this order:",{"type":58,"tag":2127,"props":2128,"children":2129},"ol",{},[2130,2148,2157,2172],{"type":58,"tag":2131,"props":2132,"children":2133},"li",{},[2134,2140,2142],{"type":58,"tag":88,"props":2135,"children":2137},{"className":2136},[],[2138],{"type":64,"value":2139},"emulate.config.yaml",{"type":64,"value":2141}," \u002F ",{"type":58,"tag":88,"props":2143,"children":2145},{"className":2144},[],[2146],{"type":64,"value":2147},".yml",{"type":58,"tag":2131,"props":2149,"children":2150},{},[2151],{"type":58,"tag":88,"props":2152,"children":2154},{"className":2153},[],[2155],{"type":64,"value":2156},"emulate.config.json",{"type":58,"tag":2131,"props":2158,"children":2159},{},[2160,2166,2167],{"type":58,"tag":88,"props":2161,"children":2163},{"className":2162},[],[2164],{"type":64,"value":2165},"service-emulator.config.yaml",{"type":64,"value":2141},{"type":58,"tag":88,"props":2168,"children":2170},{"className":2169},[],[2171],{"type":64,"value":2147},{"type":58,"tag":2131,"props":2173,"children":2174},{},[2175],{"type":58,"tag":88,"props":2176,"children":2178},{"className":2177},[],[2179],{"type":64,"value":2180},"service-emulator.config.json",{"type":58,"tag":67,"props":2182,"children":2183},{},[2184,2186,2192,2194,2200],{"type":64,"value":2185},"Or pass ",{"type":58,"tag":88,"props":2187,"children":2189},{"className":2188},[],[2190],{"type":64,"value":2191},"--seed \u003Cfile>",{"type":64,"value":2193}," explicitly. Run ",{"type":58,"tag":88,"props":2195,"children":2197},{"className":2196},[],[2198],{"type":64,"value":2199},"npx emulate init",{"type":64,"value":2201}," to generate a starter file.",{"type":58,"tag":585,"props":2203,"children":2205},{"id":2204},"config-structure",[2206],{"type":64,"value":2207},"Config Structure",{"type":58,"tag":80,"props":2209,"children":2213},{"className":2210,"code":2211,"language":2212,"meta":85,"style":85},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","tokens:\n  my_token:\n    login: admin\n    scopes: [repo, user]\n\nvercel:\n  users:\n    - username: developer\n      name: Developer\n      email: dev@example.com\n  teams:\n    - slug: my-team\n      name: My Team\n  projects:\n    - name: my-app\n      team: my-team\n      framework: nextjs\n  integrations:\n    - client_id: oac_abc123\n      client_secret: secret_abc123\n      name: My Vercel App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fvercel\n\ngithub:\n  users:\n    - login: octocat\n      name: The Octocat\n      email: octocat@github.com\n  orgs:\n    - login: my-org\n      name: My Organization\n  repos:\n    - owner: octocat\n      name: hello-world\n      language: JavaScript\n      auto_init: true\n  oauth_apps:\n    - client_id: Iv1.abc123\n      client_secret: secret_abc123\n      name: My Web App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fgithub\n\ngoogle:\n  users:\n    - email: testuser@example.com\n      name: Test User\n  oauth_clients:\n    - client_id: my-client-id.apps.googleusercontent.com\n      client_secret: GOCSPX-secret\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fgoogle\n\nslack:\n  team:\n    name: My Workspace\n    domain: my-workspace\n  users:\n    - name: developer\n      real_name: Developer\n      email: dev@example.com\n  channels:\n    - name: general\n      topic: General discussion\n  bots:\n    - name: my-bot\n  oauth_apps:\n    - client_id: \"12345.67890\"\n      client_secret: example_client_secret\n      name: My Slack App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fslack\n\nlinear:\n  organization:\n    name: Acme\n    url_key: acme\n  users:\n    - email: admin@example.com\n      name: Admin User\n      admin: true\n    - email: dev@example.com\n      name: Developer\n  teams:\n    - key: ENG\n      name: Engineering\n  issues:\n    - team: ENG\n      title: Fix local checkout test\n      state: Todo\n      assignee: dev@example.com\n  oauth_apps:\n    - client_id: lin_example_client_id\n      client_secret: example_client_secret\n      name: My Linear App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Flinear\n      scopes: [read, write, issues:create, comments:create]\n  tokens:\n    - token: lin_test_admin\n      user: admin@example.com\n      scopes: [read, write, issues:create, comments:create, admin]\n\napple:\n  users:\n    - email: testuser@icloud.com\n      name: Test User\n  oauth_clients:\n    - client_id: com.example.app\n      team_id: TEAM001\n      name: My Apple App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\n\nmicrosoft:\n  users:\n    - email: testuser@outlook.com\n      name: Test User\n  oauth_clients:\n    - client_id: example-client-id\n      client_secret: example-client-secret\n      name: My Microsoft App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fmicrosoft-entra-id\n\naws:\n  region: us-east-1\n  s3:\n    buckets:\n      - name: my-app-bucket\n  sqs:\n    queues:\n      - name: my-app-events\n  iam:\n    users:\n      - user_name: developer\n        create_access_key: true\n    roles:\n      - role_name: lambda-execution-role\n","yaml",[2214],{"type":58,"tag":88,"props":2215,"children":2216},{"__ignoreMap":85},[2217,2230,2242,2259,2295,2302,2313,2325,2347,2364,2381,2393,2414,2430,2442,2463,2479,2496,2508,2529,2546,2563,2576,2590,2598,2610,2622,2644,2661,2678,2691,2712,2729,2742,2763,2780,2798,2817,2830,2851,2867,2884,2896,2909,2917,2930,2942,2964,2981,2994,3015,3032,3044,3057,3065,3077,3090,3108,3126,3138,3158,3175,3191,3204,3225,3243,3256,3277,3289,3320,3337,3354,3366,3379,3387,3399,3412,3429,3447,3459,3480,3497,3514,3534,3550,3562,3584,3601,3614,3635,3653,3671,3688,3700,3721,3736,3753,3765,3778,3831,3844,3866,3883,3940,3948,3960,3972,3993,4009,4021,4042,4060,4077,4089,4102,4110,4122,4134,4155,4171,4183,4204,4221,4238,4250,4263,4271,4283,4301,4314,4327,4349,4362,4375,4396,4409,4422,4443,4460,4473],{"type":58,"tag":92,"props":2218,"children":2219},{"class":94,"line":95},[2220,2225],{"type":58,"tag":92,"props":2221,"children":2222},{"style":948},[2223],{"type":64,"value":2224},"tokens",{"type":58,"tag":92,"props":2226,"children":2227},{"style":866},[2228],{"type":64,"value":2229},":\n",{"type":58,"tag":92,"props":2231,"children":2232},{"class":94,"line":342},[2233,2238],{"type":58,"tag":92,"props":2234,"children":2235},{"style":948},[2236],{"type":64,"value":2237},"  my_token",{"type":58,"tag":92,"props":2239,"children":2240},{"style":866},[2241],{"type":64,"value":2229},{"type":58,"tag":92,"props":2243,"children":2244},{"class":94,"line":354},[2245,2250,2254],{"type":58,"tag":92,"props":2246,"children":2247},{"style":948},[2248],{"type":64,"value":2249},"    login",{"type":58,"tag":92,"props":2251,"children":2252},{"style":866},[2253],{"type":64,"value":956},{"type":58,"tag":92,"props":2255,"children":2256},{"style":105},[2257],{"type":64,"value":2258}," admin\n",{"type":58,"tag":92,"props":2260,"children":2261},{"class":94,"line":364},[2262,2267,2271,2276,2281,2285,2290],{"type":58,"tag":92,"props":2263,"children":2264},{"style":948},[2265],{"type":64,"value":2266},"    scopes",{"type":58,"tag":92,"props":2268,"children":2269},{"style":866},[2270],{"type":64,"value":956},{"type":58,"tag":92,"props":2272,"children":2273},{"style":866},[2274],{"type":64,"value":2275}," [",{"type":58,"tag":92,"props":2277,"children":2278},{"style":105},[2279],{"type":64,"value":2280},"repo",{"type":58,"tag":92,"props":2282,"children":2283},{"style":866},[2284],{"type":64,"value":974},{"type":58,"tag":92,"props":2286,"children":2287},{"style":105},[2288],{"type":64,"value":2289}," user",{"type":58,"tag":92,"props":2291,"children":2292},{"style":866},[2293],{"type":64,"value":2294},"]\n",{"type":58,"tag":92,"props":2296,"children":2297},{"class":94,"line":373},[2298],{"type":58,"tag":92,"props":2299,"children":2300},{"emptyLinePlaceholder":358},[2301],{"type":64,"value":361},{"type":58,"tag":92,"props":2303,"children":2304},{"class":94,"line":396},[2305,2309],{"type":58,"tag":92,"props":2306,"children":2307},{"style":948},[2308],{"type":64,"value":1046},{"type":58,"tag":92,"props":2310,"children":2311},{"style":866},[2312],{"type":64,"value":2229},{"type":58,"tag":92,"props":2314,"children":2315},{"class":94,"line":404},[2316,2321],{"type":58,"tag":92,"props":2317,"children":2318},{"style":948},[2319],{"type":64,"value":2320},"  users",{"type":58,"tag":92,"props":2322,"children":2323},{"style":866},[2324],{"type":64,"value":2229},{"type":58,"tag":92,"props":2326,"children":2327},{"class":94,"line":413},[2328,2333,2338,2342],{"type":58,"tag":92,"props":2329,"children":2330},{"style":866},[2331],{"type":64,"value":2332},"    -",{"type":58,"tag":92,"props":2334,"children":2335},{"style":948},[2336],{"type":64,"value":2337}," username",{"type":58,"tag":92,"props":2339,"children":2340},{"style":866},[2341],{"type":64,"value":956},{"type":58,"tag":92,"props":2343,"children":2344},{"style":105},[2345],{"type":64,"value":2346}," developer\n",{"type":58,"tag":92,"props":2348,"children":2349},{"class":94,"line":436},[2350,2355,2359],{"type":58,"tag":92,"props":2351,"children":2352},{"style":948},[2353],{"type":64,"value":2354},"      name",{"type":58,"tag":92,"props":2356,"children":2357},{"style":866},[2358],{"type":64,"value":956},{"type":58,"tag":92,"props":2360,"children":2361},{"style":105},[2362],{"type":64,"value":2363}," Developer\n",{"type":58,"tag":92,"props":2365,"children":2366},{"class":94,"line":444},[2367,2372,2376],{"type":58,"tag":92,"props":2368,"children":2369},{"style":948},[2370],{"type":64,"value":2371},"      email",{"type":58,"tag":92,"props":2373,"children":2374},{"style":866},[2375],{"type":64,"value":956},{"type":58,"tag":92,"props":2377,"children":2378},{"style":105},[2379],{"type":64,"value":2380}," dev@example.com\n",{"type":58,"tag":92,"props":2382,"children":2383},{"class":94,"line":453},[2384,2389],{"type":58,"tag":92,"props":2385,"children":2386},{"style":948},[2387],{"type":64,"value":2388},"  teams",{"type":58,"tag":92,"props":2390,"children":2391},{"style":866},[2392],{"type":64,"value":2229},{"type":58,"tag":92,"props":2394,"children":2395},{"class":94,"line":475},[2396,2400,2405,2409],{"type":58,"tag":92,"props":2397,"children":2398},{"style":866},[2399],{"type":64,"value":2332},{"type":58,"tag":92,"props":2401,"children":2402},{"style":948},[2403],{"type":64,"value":2404}," slug",{"type":58,"tag":92,"props":2406,"children":2407},{"style":866},[2408],{"type":64,"value":956},{"type":58,"tag":92,"props":2410,"children":2411},{"style":105},[2412],{"type":64,"value":2413}," my-team\n",{"type":58,"tag":92,"props":2415,"children":2416},{"class":94,"line":483},[2417,2421,2425],{"type":58,"tag":92,"props":2418,"children":2419},{"style":948},[2420],{"type":64,"value":2354},{"type":58,"tag":92,"props":2422,"children":2423},{"style":866},[2424],{"type":64,"value":956},{"type":58,"tag":92,"props":2426,"children":2427},{"style":105},[2428],{"type":64,"value":2429}," My Team\n",{"type":58,"tag":92,"props":2431,"children":2432},{"class":94,"line":492},[2433,2438],{"type":58,"tag":92,"props":2434,"children":2435},{"style":948},[2436],{"type":64,"value":2437},"  projects",{"type":58,"tag":92,"props":2439,"children":2440},{"style":866},[2441],{"type":64,"value":2229},{"type":58,"tag":92,"props":2443,"children":2444},{"class":94,"line":509},[2445,2449,2454,2458],{"type":58,"tag":92,"props":2446,"children":2447},{"style":866},[2448],{"type":64,"value":2332},{"type":58,"tag":92,"props":2450,"children":2451},{"style":948},[2452],{"type":64,"value":2453}," name",{"type":58,"tag":92,"props":2455,"children":2456},{"style":866},[2457],{"type":64,"value":956},{"type":58,"tag":92,"props":2459,"children":2460},{"style":105},[2461],{"type":64,"value":2462}," my-app\n",{"type":58,"tag":92,"props":2464,"children":2465},{"class":94,"line":517},[2466,2471,2475],{"type":58,"tag":92,"props":2467,"children":2468},{"style":948},[2469],{"type":64,"value":2470},"      team",{"type":58,"tag":92,"props":2472,"children":2473},{"style":866},[2474],{"type":64,"value":956},{"type":58,"tag":92,"props":2476,"children":2477},{"style":105},[2478],{"type":64,"value":2413},{"type":58,"tag":92,"props":2480,"children":2481},{"class":94,"line":526},[2482,2487,2491],{"type":58,"tag":92,"props":2483,"children":2484},{"style":948},[2485],{"type":64,"value":2486},"      framework",{"type":58,"tag":92,"props":2488,"children":2489},{"style":866},[2490],{"type":64,"value":956},{"type":58,"tag":92,"props":2492,"children":2493},{"style":105},[2494],{"type":64,"value":2495}," nextjs\n",{"type":58,"tag":92,"props":2497,"children":2498},{"class":94,"line":552},[2499,2504],{"type":58,"tag":92,"props":2500,"children":2501},{"style":948},[2502],{"type":64,"value":2503},"  integrations",{"type":58,"tag":92,"props":2505,"children":2506},{"style":866},[2507],{"type":64,"value":2229},{"type":58,"tag":92,"props":2509,"children":2510},{"class":94,"line":560},[2511,2515,2520,2524],{"type":58,"tag":92,"props":2512,"children":2513},{"style":866},[2514],{"type":64,"value":2332},{"type":58,"tag":92,"props":2516,"children":2517},{"style":948},[2518],{"type":64,"value":2519}," client_id",{"type":58,"tag":92,"props":2521,"children":2522},{"style":866},[2523],{"type":64,"value":956},{"type":58,"tag":92,"props":2525,"children":2526},{"style":105},[2527],{"type":64,"value":2528}," oac_abc123\n",{"type":58,"tag":92,"props":2530,"children":2531},{"class":94,"line":569},[2532,2537,2541],{"type":58,"tag":92,"props":2533,"children":2534},{"style":948},[2535],{"type":64,"value":2536},"      client_secret",{"type":58,"tag":92,"props":2538,"children":2539},{"style":866},[2540],{"type":64,"value":956},{"type":58,"tag":92,"props":2542,"children":2543},{"style":105},[2544],{"type":64,"value":2545}," secret_abc123\n",{"type":58,"tag":92,"props":2547,"children":2549},{"class":94,"line":2548},21,[2550,2554,2558],{"type":58,"tag":92,"props":2551,"children":2552},{"style":948},[2553],{"type":64,"value":2354},{"type":58,"tag":92,"props":2555,"children":2556},{"style":866},[2557],{"type":64,"value":956},{"type":58,"tag":92,"props":2559,"children":2560},{"style":105},[2561],{"type":64,"value":2562}," My Vercel App\n",{"type":58,"tag":92,"props":2564,"children":2566},{"class":94,"line":2565},22,[2567,2572],{"type":58,"tag":92,"props":2568,"children":2569},{"style":948},[2570],{"type":64,"value":2571},"      redirect_uris",{"type":58,"tag":92,"props":2573,"children":2574},{"style":866},[2575],{"type":64,"value":2229},{"type":58,"tag":92,"props":2577,"children":2579},{"class":94,"line":2578},23,[2580,2585],{"type":58,"tag":92,"props":2581,"children":2582},{"style":866},[2583],{"type":64,"value":2584},"        -",{"type":58,"tag":92,"props":2586,"children":2587},{"style":105},[2588],{"type":64,"value":2589}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fvercel\n",{"type":58,"tag":92,"props":2591,"children":2593},{"class":94,"line":2592},24,[2594],{"type":58,"tag":92,"props":2595,"children":2596},{"emptyLinePlaceholder":358},[2597],{"type":64,"value":361},{"type":58,"tag":92,"props":2599,"children":2601},{"class":94,"line":2600},25,[2602,2606],{"type":58,"tag":92,"props":2603,"children":2604},{"style":948},[2605],{"type":64,"value":18},{"type":58,"tag":92,"props":2607,"children":2608},{"style":866},[2609],{"type":64,"value":2229},{"type":58,"tag":92,"props":2611,"children":2613},{"class":94,"line":2612},26,[2614,2618],{"type":58,"tag":92,"props":2615,"children":2616},{"style":948},[2617],{"type":64,"value":2320},{"type":58,"tag":92,"props":2619,"children":2620},{"style":866},[2621],{"type":64,"value":2229},{"type":58,"tag":92,"props":2623,"children":2625},{"class":94,"line":2624},27,[2626,2630,2635,2639],{"type":58,"tag":92,"props":2627,"children":2628},{"style":866},[2629],{"type":64,"value":2332},{"type":58,"tag":92,"props":2631,"children":2632},{"style":948},[2633],{"type":64,"value":2634}," login",{"type":58,"tag":92,"props":2636,"children":2637},{"style":866},[2638],{"type":64,"value":956},{"type":58,"tag":92,"props":2640,"children":2641},{"style":105},[2642],{"type":64,"value":2643}," octocat\n",{"type":58,"tag":92,"props":2645,"children":2647},{"class":94,"line":2646},28,[2648,2652,2656],{"type":58,"tag":92,"props":2649,"children":2650},{"style":948},[2651],{"type":64,"value":2354},{"type":58,"tag":92,"props":2653,"children":2654},{"style":866},[2655],{"type":64,"value":956},{"type":58,"tag":92,"props":2657,"children":2658},{"style":105},[2659],{"type":64,"value":2660}," The Octocat\n",{"type":58,"tag":92,"props":2662,"children":2664},{"class":94,"line":2663},29,[2665,2669,2673],{"type":58,"tag":92,"props":2666,"children":2667},{"style":948},[2668],{"type":64,"value":2371},{"type":58,"tag":92,"props":2670,"children":2671},{"style":866},[2672],{"type":64,"value":956},{"type":58,"tag":92,"props":2674,"children":2675},{"style":105},[2676],{"type":64,"value":2677}," octocat@github.com\n",{"type":58,"tag":92,"props":2679,"children":2681},{"class":94,"line":2680},30,[2682,2687],{"type":58,"tag":92,"props":2683,"children":2684},{"style":948},[2685],{"type":64,"value":2686},"  orgs",{"type":58,"tag":92,"props":2688,"children":2689},{"style":866},[2690],{"type":64,"value":2229},{"type":58,"tag":92,"props":2692,"children":2694},{"class":94,"line":2693},31,[2695,2699,2703,2707],{"type":58,"tag":92,"props":2696,"children":2697},{"style":866},[2698],{"type":64,"value":2332},{"type":58,"tag":92,"props":2700,"children":2701},{"style":948},[2702],{"type":64,"value":2634},{"type":58,"tag":92,"props":2704,"children":2705},{"style":866},[2706],{"type":64,"value":956},{"type":58,"tag":92,"props":2708,"children":2709},{"style":105},[2710],{"type":64,"value":2711}," my-org\n",{"type":58,"tag":92,"props":2713,"children":2715},{"class":94,"line":2714},32,[2716,2720,2724],{"type":58,"tag":92,"props":2717,"children":2718},{"style":948},[2719],{"type":64,"value":2354},{"type":58,"tag":92,"props":2721,"children":2722},{"style":866},[2723],{"type":64,"value":956},{"type":58,"tag":92,"props":2725,"children":2726},{"style":105},[2727],{"type":64,"value":2728}," My Organization\n",{"type":58,"tag":92,"props":2730,"children":2732},{"class":94,"line":2731},33,[2733,2738],{"type":58,"tag":92,"props":2734,"children":2735},{"style":948},[2736],{"type":64,"value":2737},"  repos",{"type":58,"tag":92,"props":2739,"children":2740},{"style":866},[2741],{"type":64,"value":2229},{"type":58,"tag":92,"props":2743,"children":2745},{"class":94,"line":2744},34,[2746,2750,2755,2759],{"type":58,"tag":92,"props":2747,"children":2748},{"style":866},[2749],{"type":64,"value":2332},{"type":58,"tag":92,"props":2751,"children":2752},{"style":948},[2753],{"type":64,"value":2754}," owner",{"type":58,"tag":92,"props":2756,"children":2757},{"style":866},[2758],{"type":64,"value":956},{"type":58,"tag":92,"props":2760,"children":2761},{"style":105},[2762],{"type":64,"value":2643},{"type":58,"tag":92,"props":2764,"children":2766},{"class":94,"line":2765},35,[2767,2771,2775],{"type":58,"tag":92,"props":2768,"children":2769},{"style":948},[2770],{"type":64,"value":2354},{"type":58,"tag":92,"props":2772,"children":2773},{"style":866},[2774],{"type":64,"value":956},{"type":58,"tag":92,"props":2776,"children":2777},{"style":105},[2778],{"type":64,"value":2779}," hello-world\n",{"type":58,"tag":92,"props":2781,"children":2783},{"class":94,"line":2782},36,[2784,2789,2793],{"type":58,"tag":92,"props":2785,"children":2786},{"style":948},[2787],{"type":64,"value":2788},"      language",{"type":58,"tag":92,"props":2790,"children":2791},{"style":866},[2792],{"type":64,"value":956},{"type":58,"tag":92,"props":2794,"children":2795},{"style":105},[2796],{"type":64,"value":2797}," JavaScript\n",{"type":58,"tag":92,"props":2799,"children":2801},{"class":94,"line":2800},37,[2802,2807,2811],{"type":58,"tag":92,"props":2803,"children":2804},{"style":948},[2805],{"type":64,"value":2806},"      auto_init",{"type":58,"tag":92,"props":2808,"children":2809},{"style":866},[2810],{"type":64,"value":956},{"type":58,"tag":92,"props":2812,"children":2814},{"style":2813},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[2815],{"type":64,"value":2816}," true\n",{"type":58,"tag":92,"props":2818,"children":2820},{"class":94,"line":2819},38,[2821,2826],{"type":58,"tag":92,"props":2822,"children":2823},{"style":948},[2824],{"type":64,"value":2825},"  oauth_apps",{"type":58,"tag":92,"props":2827,"children":2828},{"style":866},[2829],{"type":64,"value":2229},{"type":58,"tag":92,"props":2831,"children":2833},{"class":94,"line":2832},39,[2834,2838,2842,2846],{"type":58,"tag":92,"props":2835,"children":2836},{"style":866},[2837],{"type":64,"value":2332},{"type":58,"tag":92,"props":2839,"children":2840},{"style":948},[2841],{"type":64,"value":2519},{"type":58,"tag":92,"props":2843,"children":2844},{"style":866},[2845],{"type":64,"value":956},{"type":58,"tag":92,"props":2847,"children":2848},{"style":105},[2849],{"type":64,"value":2850}," Iv1.abc123\n",{"type":58,"tag":92,"props":2852,"children":2854},{"class":94,"line":2853},40,[2855,2859,2863],{"type":58,"tag":92,"props":2856,"children":2857},{"style":948},[2858],{"type":64,"value":2536},{"type":58,"tag":92,"props":2860,"children":2861},{"style":866},[2862],{"type":64,"value":956},{"type":58,"tag":92,"props":2864,"children":2865},{"style":105},[2866],{"type":64,"value":2545},{"type":58,"tag":92,"props":2868,"children":2870},{"class":94,"line":2869},41,[2871,2875,2879],{"type":58,"tag":92,"props":2872,"children":2873},{"style":948},[2874],{"type":64,"value":2354},{"type":58,"tag":92,"props":2876,"children":2877},{"style":866},[2878],{"type":64,"value":956},{"type":58,"tag":92,"props":2880,"children":2881},{"style":105},[2882],{"type":64,"value":2883}," My Web App\n",{"type":58,"tag":92,"props":2885,"children":2887},{"class":94,"line":2886},42,[2888,2892],{"type":58,"tag":92,"props":2889,"children":2890},{"style":948},[2891],{"type":64,"value":2571},{"type":58,"tag":92,"props":2893,"children":2894},{"style":866},[2895],{"type":64,"value":2229},{"type":58,"tag":92,"props":2897,"children":2899},{"class":94,"line":2898},43,[2900,2904],{"type":58,"tag":92,"props":2901,"children":2902},{"style":866},[2903],{"type":64,"value":2584},{"type":58,"tag":92,"props":2905,"children":2906},{"style":105},[2907],{"type":64,"value":2908}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fgithub\n",{"type":58,"tag":92,"props":2910,"children":2912},{"class":94,"line":2911},44,[2913],{"type":58,"tag":92,"props":2914,"children":2915},{"emptyLinePlaceholder":358},[2916],{"type":64,"value":361},{"type":58,"tag":92,"props":2918,"children":2920},{"class":94,"line":2919},45,[2921,2926],{"type":58,"tag":92,"props":2922,"children":2923},{"style":948},[2924],{"type":64,"value":2925},"google",{"type":58,"tag":92,"props":2927,"children":2928},{"style":866},[2929],{"type":64,"value":2229},{"type":58,"tag":92,"props":2931,"children":2933},{"class":94,"line":2932},46,[2934,2938],{"type":58,"tag":92,"props":2935,"children":2936},{"style":948},[2937],{"type":64,"value":2320},{"type":58,"tag":92,"props":2939,"children":2940},{"style":866},[2941],{"type":64,"value":2229},{"type":58,"tag":92,"props":2943,"children":2945},{"class":94,"line":2944},47,[2946,2950,2955,2959],{"type":58,"tag":92,"props":2947,"children":2948},{"style":866},[2949],{"type":64,"value":2332},{"type":58,"tag":92,"props":2951,"children":2952},{"style":948},[2953],{"type":64,"value":2954}," email",{"type":58,"tag":92,"props":2956,"children":2957},{"style":866},[2958],{"type":64,"value":956},{"type":58,"tag":92,"props":2960,"children":2961},{"style":105},[2962],{"type":64,"value":2963}," testuser@example.com\n",{"type":58,"tag":92,"props":2965,"children":2967},{"class":94,"line":2966},48,[2968,2972,2976],{"type":58,"tag":92,"props":2969,"children":2970},{"style":948},[2971],{"type":64,"value":2354},{"type":58,"tag":92,"props":2973,"children":2974},{"style":866},[2975],{"type":64,"value":956},{"type":58,"tag":92,"props":2977,"children":2978},{"style":105},[2979],{"type":64,"value":2980}," Test User\n",{"type":58,"tag":92,"props":2982,"children":2984},{"class":94,"line":2983},49,[2985,2990],{"type":58,"tag":92,"props":2986,"children":2987},{"style":948},[2988],{"type":64,"value":2989},"  oauth_clients",{"type":58,"tag":92,"props":2991,"children":2992},{"style":866},[2993],{"type":64,"value":2229},{"type":58,"tag":92,"props":2995,"children":2997},{"class":94,"line":2996},50,[2998,3002,3006,3010],{"type":58,"tag":92,"props":2999,"children":3000},{"style":866},[3001],{"type":64,"value":2332},{"type":58,"tag":92,"props":3003,"children":3004},{"style":948},[3005],{"type":64,"value":2519},{"type":58,"tag":92,"props":3007,"children":3008},{"style":866},[3009],{"type":64,"value":956},{"type":58,"tag":92,"props":3011,"children":3012},{"style":105},[3013],{"type":64,"value":3014}," my-client-id.apps.googleusercontent.com\n",{"type":58,"tag":92,"props":3016,"children":3018},{"class":94,"line":3017},51,[3019,3023,3027],{"type":58,"tag":92,"props":3020,"children":3021},{"style":948},[3022],{"type":64,"value":2536},{"type":58,"tag":92,"props":3024,"children":3025},{"style":866},[3026],{"type":64,"value":956},{"type":58,"tag":92,"props":3028,"children":3029},{"style":105},[3030],{"type":64,"value":3031}," GOCSPX-secret\n",{"type":58,"tag":92,"props":3033,"children":3035},{"class":94,"line":3034},52,[3036,3040],{"type":58,"tag":92,"props":3037,"children":3038},{"style":948},[3039],{"type":64,"value":2571},{"type":58,"tag":92,"props":3041,"children":3042},{"style":866},[3043],{"type":64,"value":2229},{"type":58,"tag":92,"props":3045,"children":3047},{"class":94,"line":3046},53,[3048,3052],{"type":58,"tag":92,"props":3049,"children":3050},{"style":866},[3051],{"type":64,"value":2584},{"type":58,"tag":92,"props":3053,"children":3054},{"style":105},[3055],{"type":64,"value":3056}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fgoogle\n",{"type":58,"tag":92,"props":3058,"children":3060},{"class":94,"line":3059},54,[3061],{"type":58,"tag":92,"props":3062,"children":3063},{"emptyLinePlaceholder":358},[3064],{"type":64,"value":361},{"type":58,"tag":92,"props":3066,"children":3068},{"class":94,"line":3067},55,[3069,3073],{"type":58,"tag":92,"props":3070,"children":3071},{"style":948},[3072],{"type":64,"value":27},{"type":58,"tag":92,"props":3074,"children":3075},{"style":866},[3076],{"type":64,"value":2229},{"type":58,"tag":92,"props":3078,"children":3080},{"class":94,"line":3079},56,[3081,3086],{"type":58,"tag":92,"props":3082,"children":3083},{"style":948},[3084],{"type":64,"value":3085},"  team",{"type":58,"tag":92,"props":3087,"children":3088},{"style":866},[3089],{"type":64,"value":2229},{"type":58,"tag":92,"props":3091,"children":3093},{"class":94,"line":3092},57,[3094,3099,3103],{"type":58,"tag":92,"props":3095,"children":3096},{"style":948},[3097],{"type":64,"value":3098},"    name",{"type":58,"tag":92,"props":3100,"children":3101},{"style":866},[3102],{"type":64,"value":956},{"type":58,"tag":92,"props":3104,"children":3105},{"style":105},[3106],{"type":64,"value":3107}," My Workspace\n",{"type":58,"tag":92,"props":3109,"children":3111},{"class":94,"line":3110},58,[3112,3117,3121],{"type":58,"tag":92,"props":3113,"children":3114},{"style":948},[3115],{"type":64,"value":3116},"    domain",{"type":58,"tag":92,"props":3118,"children":3119},{"style":866},[3120],{"type":64,"value":956},{"type":58,"tag":92,"props":3122,"children":3123},{"style":105},[3124],{"type":64,"value":3125}," my-workspace\n",{"type":58,"tag":92,"props":3127,"children":3129},{"class":94,"line":3128},59,[3130,3134],{"type":58,"tag":92,"props":3131,"children":3132},{"style":948},[3133],{"type":64,"value":2320},{"type":58,"tag":92,"props":3135,"children":3136},{"style":866},[3137],{"type":64,"value":2229},{"type":58,"tag":92,"props":3139,"children":3141},{"class":94,"line":3140},60,[3142,3146,3150,3154],{"type":58,"tag":92,"props":3143,"children":3144},{"style":866},[3145],{"type":64,"value":2332},{"type":58,"tag":92,"props":3147,"children":3148},{"style":948},[3149],{"type":64,"value":2453},{"type":58,"tag":92,"props":3151,"children":3152},{"style":866},[3153],{"type":64,"value":956},{"type":58,"tag":92,"props":3155,"children":3156},{"style":105},[3157],{"type":64,"value":2346},{"type":58,"tag":92,"props":3159,"children":3161},{"class":94,"line":3160},61,[3162,3167,3171],{"type":58,"tag":92,"props":3163,"children":3164},{"style":948},[3165],{"type":64,"value":3166},"      real_name",{"type":58,"tag":92,"props":3168,"children":3169},{"style":866},[3170],{"type":64,"value":956},{"type":58,"tag":92,"props":3172,"children":3173},{"style":105},[3174],{"type":64,"value":2363},{"type":58,"tag":92,"props":3176,"children":3178},{"class":94,"line":3177},62,[3179,3183,3187],{"type":58,"tag":92,"props":3180,"children":3181},{"style":948},[3182],{"type":64,"value":2371},{"type":58,"tag":92,"props":3184,"children":3185},{"style":866},[3186],{"type":64,"value":956},{"type":58,"tag":92,"props":3188,"children":3189},{"style":105},[3190],{"type":64,"value":2380},{"type":58,"tag":92,"props":3192,"children":3194},{"class":94,"line":3193},63,[3195,3200],{"type":58,"tag":92,"props":3196,"children":3197},{"style":948},[3198],{"type":64,"value":3199},"  channels",{"type":58,"tag":92,"props":3201,"children":3202},{"style":866},[3203],{"type":64,"value":2229},{"type":58,"tag":92,"props":3205,"children":3207},{"class":94,"line":3206},64,[3208,3212,3216,3220],{"type":58,"tag":92,"props":3209,"children":3210},{"style":866},[3211],{"type":64,"value":2332},{"type":58,"tag":92,"props":3213,"children":3214},{"style":948},[3215],{"type":64,"value":2453},{"type":58,"tag":92,"props":3217,"children":3218},{"style":866},[3219],{"type":64,"value":956},{"type":58,"tag":92,"props":3221,"children":3222},{"style":105},[3223],{"type":64,"value":3224}," general\n",{"type":58,"tag":92,"props":3226,"children":3228},{"class":94,"line":3227},65,[3229,3234,3238],{"type":58,"tag":92,"props":3230,"children":3231},{"style":948},[3232],{"type":64,"value":3233},"      topic",{"type":58,"tag":92,"props":3235,"children":3236},{"style":866},[3237],{"type":64,"value":956},{"type":58,"tag":92,"props":3239,"children":3240},{"style":105},[3241],{"type":64,"value":3242}," General discussion\n",{"type":58,"tag":92,"props":3244,"children":3246},{"class":94,"line":3245},66,[3247,3252],{"type":58,"tag":92,"props":3248,"children":3249},{"style":948},[3250],{"type":64,"value":3251},"  bots",{"type":58,"tag":92,"props":3253,"children":3254},{"style":866},[3255],{"type":64,"value":2229},{"type":58,"tag":92,"props":3257,"children":3259},{"class":94,"line":3258},67,[3260,3264,3268,3272],{"type":58,"tag":92,"props":3261,"children":3262},{"style":866},[3263],{"type":64,"value":2332},{"type":58,"tag":92,"props":3265,"children":3266},{"style":948},[3267],{"type":64,"value":2453},{"type":58,"tag":92,"props":3269,"children":3270},{"style":866},[3271],{"type":64,"value":956},{"type":58,"tag":92,"props":3273,"children":3274},{"style":105},[3275],{"type":64,"value":3276}," my-bot\n",{"type":58,"tag":92,"props":3278,"children":3280},{"class":94,"line":3279},68,[3281,3285],{"type":58,"tag":92,"props":3282,"children":3283},{"style":948},[3284],{"type":64,"value":2825},{"type":58,"tag":92,"props":3286,"children":3287},{"style":866},[3288],{"type":64,"value":2229},{"type":58,"tag":92,"props":3290,"children":3292},{"class":94,"line":3291},69,[3293,3297,3301,3305,3310,3315],{"type":58,"tag":92,"props":3294,"children":3295},{"style":866},[3296],{"type":64,"value":2332},{"type":58,"tag":92,"props":3298,"children":3299},{"style":948},[3300],{"type":64,"value":2519},{"type":58,"tag":92,"props":3302,"children":3303},{"style":866},[3304],{"type":64,"value":956},{"type":58,"tag":92,"props":3306,"children":3307},{"style":866},[3308],{"type":64,"value":3309}," \"",{"type":58,"tag":92,"props":3311,"children":3312},{"style":105},[3313],{"type":64,"value":3314},"12345.67890",{"type":58,"tag":92,"props":3316,"children":3317},{"style":866},[3318],{"type":64,"value":3319},"\"\n",{"type":58,"tag":92,"props":3321,"children":3323},{"class":94,"line":3322},70,[3324,3328,3332],{"type":58,"tag":92,"props":3325,"children":3326},{"style":948},[3327],{"type":64,"value":2536},{"type":58,"tag":92,"props":3329,"children":3330},{"style":866},[3331],{"type":64,"value":956},{"type":58,"tag":92,"props":3333,"children":3334},{"style":105},[3335],{"type":64,"value":3336}," example_client_secret\n",{"type":58,"tag":92,"props":3338,"children":3340},{"class":94,"line":3339},71,[3341,3345,3349],{"type":58,"tag":92,"props":3342,"children":3343},{"style":948},[3344],{"type":64,"value":2354},{"type":58,"tag":92,"props":3346,"children":3347},{"style":866},[3348],{"type":64,"value":956},{"type":58,"tag":92,"props":3350,"children":3351},{"style":105},[3352],{"type":64,"value":3353}," My Slack App\n",{"type":58,"tag":92,"props":3355,"children":3357},{"class":94,"line":3356},72,[3358,3362],{"type":58,"tag":92,"props":3359,"children":3360},{"style":948},[3361],{"type":64,"value":2571},{"type":58,"tag":92,"props":3363,"children":3364},{"style":866},[3365],{"type":64,"value":2229},{"type":58,"tag":92,"props":3367,"children":3369},{"class":94,"line":3368},73,[3370,3374],{"type":58,"tag":92,"props":3371,"children":3372},{"style":866},[3373],{"type":64,"value":2584},{"type":58,"tag":92,"props":3375,"children":3376},{"style":105},[3377],{"type":64,"value":3378}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fslack\n",{"type":58,"tag":92,"props":3380,"children":3382},{"class":94,"line":3381},74,[3383],{"type":58,"tag":92,"props":3384,"children":3385},{"emptyLinePlaceholder":358},[3386],{"type":64,"value":361},{"type":58,"tag":92,"props":3388,"children":3390},{"class":94,"line":3389},75,[3391,3395],{"type":58,"tag":92,"props":3392,"children":3393},{"style":948},[3394],{"type":64,"value":14},{"type":58,"tag":92,"props":3396,"children":3397},{"style":866},[3398],{"type":64,"value":2229},{"type":58,"tag":92,"props":3400,"children":3402},{"class":94,"line":3401},76,[3403,3408],{"type":58,"tag":92,"props":3404,"children":3405},{"style":948},[3406],{"type":64,"value":3407},"  organization",{"type":58,"tag":92,"props":3409,"children":3410},{"style":866},[3411],{"type":64,"value":2229},{"type":58,"tag":92,"props":3413,"children":3415},{"class":94,"line":3414},77,[3416,3420,3424],{"type":58,"tag":92,"props":3417,"children":3418},{"style":948},[3419],{"type":64,"value":3098},{"type":58,"tag":92,"props":3421,"children":3422},{"style":866},[3423],{"type":64,"value":956},{"type":58,"tag":92,"props":3425,"children":3426},{"style":105},[3427],{"type":64,"value":3428}," Acme\n",{"type":58,"tag":92,"props":3430,"children":3432},{"class":94,"line":3431},78,[3433,3438,3442],{"type":58,"tag":92,"props":3434,"children":3435},{"style":948},[3436],{"type":64,"value":3437},"    url_key",{"type":58,"tag":92,"props":3439,"children":3440},{"style":866},[3441],{"type":64,"value":956},{"type":58,"tag":92,"props":3443,"children":3444},{"style":105},[3445],{"type":64,"value":3446}," acme\n",{"type":58,"tag":92,"props":3448,"children":3450},{"class":94,"line":3449},79,[3451,3455],{"type":58,"tag":92,"props":3452,"children":3453},{"style":948},[3454],{"type":64,"value":2320},{"type":58,"tag":92,"props":3456,"children":3457},{"style":866},[3458],{"type":64,"value":2229},{"type":58,"tag":92,"props":3460,"children":3462},{"class":94,"line":3461},80,[3463,3467,3471,3475],{"type":58,"tag":92,"props":3464,"children":3465},{"style":866},[3466],{"type":64,"value":2332},{"type":58,"tag":92,"props":3468,"children":3469},{"style":948},[3470],{"type":64,"value":2954},{"type":58,"tag":92,"props":3472,"children":3473},{"style":866},[3474],{"type":64,"value":956},{"type":58,"tag":92,"props":3476,"children":3477},{"style":105},[3478],{"type":64,"value":3479}," admin@example.com\n",{"type":58,"tag":92,"props":3481,"children":3483},{"class":94,"line":3482},81,[3484,3488,3492],{"type":58,"tag":92,"props":3485,"children":3486},{"style":948},[3487],{"type":64,"value":2354},{"type":58,"tag":92,"props":3489,"children":3490},{"style":866},[3491],{"type":64,"value":956},{"type":58,"tag":92,"props":3493,"children":3494},{"style":105},[3495],{"type":64,"value":3496}," Admin User\n",{"type":58,"tag":92,"props":3498,"children":3500},{"class":94,"line":3499},82,[3501,3506,3510],{"type":58,"tag":92,"props":3502,"children":3503},{"style":948},[3504],{"type":64,"value":3505},"      admin",{"type":58,"tag":92,"props":3507,"children":3508},{"style":866},[3509],{"type":64,"value":956},{"type":58,"tag":92,"props":3511,"children":3512},{"style":2813},[3513],{"type":64,"value":2816},{"type":58,"tag":92,"props":3515,"children":3517},{"class":94,"line":3516},83,[3518,3522,3526,3530],{"type":58,"tag":92,"props":3519,"children":3520},{"style":866},[3521],{"type":64,"value":2332},{"type":58,"tag":92,"props":3523,"children":3524},{"style":948},[3525],{"type":64,"value":2954},{"type":58,"tag":92,"props":3527,"children":3528},{"style":866},[3529],{"type":64,"value":956},{"type":58,"tag":92,"props":3531,"children":3532},{"style":105},[3533],{"type":64,"value":2380},{"type":58,"tag":92,"props":3535,"children":3537},{"class":94,"line":3536},84,[3538,3542,3546],{"type":58,"tag":92,"props":3539,"children":3540},{"style":948},[3541],{"type":64,"value":2354},{"type":58,"tag":92,"props":3543,"children":3544},{"style":866},[3545],{"type":64,"value":956},{"type":58,"tag":92,"props":3547,"children":3548},{"style":105},[3549],{"type":64,"value":2363},{"type":58,"tag":92,"props":3551,"children":3553},{"class":94,"line":3552},85,[3554,3558],{"type":58,"tag":92,"props":3555,"children":3556},{"style":948},[3557],{"type":64,"value":2388},{"type":58,"tag":92,"props":3559,"children":3560},{"style":866},[3561],{"type":64,"value":2229},{"type":58,"tag":92,"props":3563,"children":3565},{"class":94,"line":3564},86,[3566,3570,3575,3579],{"type":58,"tag":92,"props":3567,"children":3568},{"style":866},[3569],{"type":64,"value":2332},{"type":58,"tag":92,"props":3571,"children":3572},{"style":948},[3573],{"type":64,"value":3574}," key",{"type":58,"tag":92,"props":3576,"children":3577},{"style":866},[3578],{"type":64,"value":956},{"type":58,"tag":92,"props":3580,"children":3581},{"style":105},[3582],{"type":64,"value":3583}," ENG\n",{"type":58,"tag":92,"props":3585,"children":3587},{"class":94,"line":3586},87,[3588,3592,3596],{"type":58,"tag":92,"props":3589,"children":3590},{"style":948},[3591],{"type":64,"value":2354},{"type":58,"tag":92,"props":3593,"children":3594},{"style":866},[3595],{"type":64,"value":956},{"type":58,"tag":92,"props":3597,"children":3598},{"style":105},[3599],{"type":64,"value":3600}," Engineering\n",{"type":58,"tag":92,"props":3602,"children":3604},{"class":94,"line":3603},88,[3605,3610],{"type":58,"tag":92,"props":3606,"children":3607},{"style":948},[3608],{"type":64,"value":3609},"  issues",{"type":58,"tag":92,"props":3611,"children":3612},{"style":866},[3613],{"type":64,"value":2229},{"type":58,"tag":92,"props":3615,"children":3617},{"class":94,"line":3616},89,[3618,3622,3627,3631],{"type":58,"tag":92,"props":3619,"children":3620},{"style":866},[3621],{"type":64,"value":2332},{"type":58,"tag":92,"props":3623,"children":3624},{"style":948},[3625],{"type":64,"value":3626}," team",{"type":58,"tag":92,"props":3628,"children":3629},{"style":866},[3630],{"type":64,"value":956},{"type":58,"tag":92,"props":3632,"children":3633},{"style":105},[3634],{"type":64,"value":3583},{"type":58,"tag":92,"props":3636,"children":3638},{"class":94,"line":3637},90,[3639,3644,3648],{"type":58,"tag":92,"props":3640,"children":3641},{"style":948},[3642],{"type":64,"value":3643},"      title",{"type":58,"tag":92,"props":3645,"children":3646},{"style":866},[3647],{"type":64,"value":956},{"type":58,"tag":92,"props":3649,"children":3650},{"style":105},[3651],{"type":64,"value":3652}," Fix local checkout test\n",{"type":58,"tag":92,"props":3654,"children":3656},{"class":94,"line":3655},91,[3657,3662,3666],{"type":58,"tag":92,"props":3658,"children":3659},{"style":948},[3660],{"type":64,"value":3661},"      state",{"type":58,"tag":92,"props":3663,"children":3664},{"style":866},[3665],{"type":64,"value":956},{"type":58,"tag":92,"props":3667,"children":3668},{"style":105},[3669],{"type":64,"value":3670}," Todo\n",{"type":58,"tag":92,"props":3672,"children":3674},{"class":94,"line":3673},92,[3675,3680,3684],{"type":58,"tag":92,"props":3676,"children":3677},{"style":948},[3678],{"type":64,"value":3679},"      assignee",{"type":58,"tag":92,"props":3681,"children":3682},{"style":866},[3683],{"type":64,"value":956},{"type":58,"tag":92,"props":3685,"children":3686},{"style":105},[3687],{"type":64,"value":2380},{"type":58,"tag":92,"props":3689,"children":3691},{"class":94,"line":3690},93,[3692,3696],{"type":58,"tag":92,"props":3693,"children":3694},{"style":948},[3695],{"type":64,"value":2825},{"type":58,"tag":92,"props":3697,"children":3698},{"style":866},[3699],{"type":64,"value":2229},{"type":58,"tag":92,"props":3701,"children":3703},{"class":94,"line":3702},94,[3704,3708,3712,3716],{"type":58,"tag":92,"props":3705,"children":3706},{"style":866},[3707],{"type":64,"value":2332},{"type":58,"tag":92,"props":3709,"children":3710},{"style":948},[3711],{"type":64,"value":2519},{"type":58,"tag":92,"props":3713,"children":3714},{"style":866},[3715],{"type":64,"value":956},{"type":58,"tag":92,"props":3717,"children":3718},{"style":105},[3719],{"type":64,"value":3720}," lin_example_client_id\n",{"type":58,"tag":92,"props":3722,"children":3723},{"class":94,"line":44},[3724,3728,3732],{"type":58,"tag":92,"props":3725,"children":3726},{"style":948},[3727],{"type":64,"value":2536},{"type":58,"tag":92,"props":3729,"children":3730},{"style":866},[3731],{"type":64,"value":956},{"type":58,"tag":92,"props":3733,"children":3734},{"style":105},[3735],{"type":64,"value":3336},{"type":58,"tag":92,"props":3737,"children":3739},{"class":94,"line":3738},96,[3740,3744,3748],{"type":58,"tag":92,"props":3741,"children":3742},{"style":948},[3743],{"type":64,"value":2354},{"type":58,"tag":92,"props":3745,"children":3746},{"style":866},[3747],{"type":64,"value":956},{"type":58,"tag":92,"props":3749,"children":3750},{"style":105},[3751],{"type":64,"value":3752}," My Linear App\n",{"type":58,"tag":92,"props":3754,"children":3756},{"class":94,"line":3755},97,[3757,3761],{"type":58,"tag":92,"props":3758,"children":3759},{"style":948},[3760],{"type":64,"value":2571},{"type":58,"tag":92,"props":3762,"children":3763},{"style":866},[3764],{"type":64,"value":2229},{"type":58,"tag":92,"props":3766,"children":3768},{"class":94,"line":3767},98,[3769,3773],{"type":58,"tag":92,"props":3770,"children":3771},{"style":866},[3772],{"type":64,"value":2584},{"type":58,"tag":92,"props":3774,"children":3775},{"style":105},[3776],{"type":64,"value":3777}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Flinear\n",{"type":58,"tag":92,"props":3779,"children":3781},{"class":94,"line":3780},99,[3782,3787,3791,3795,3800,3804,3809,3813,3818,3822,3827],{"type":58,"tag":92,"props":3783,"children":3784},{"style":948},[3785],{"type":64,"value":3786},"      scopes",{"type":58,"tag":92,"props":3788,"children":3789},{"style":866},[3790],{"type":64,"value":956},{"type":58,"tag":92,"props":3792,"children":3793},{"style":866},[3794],{"type":64,"value":2275},{"type":58,"tag":92,"props":3796,"children":3797},{"style":105},[3798],{"type":64,"value":3799},"read",{"type":58,"tag":92,"props":3801,"children":3802},{"style":866},[3803],{"type":64,"value":974},{"type":58,"tag":92,"props":3805,"children":3806},{"style":105},[3807],{"type":64,"value":3808}," write",{"type":58,"tag":92,"props":3810,"children":3811},{"style":866},[3812],{"type":64,"value":974},{"type":58,"tag":92,"props":3814,"children":3815},{"style":105},[3816],{"type":64,"value":3817}," issues:create",{"type":58,"tag":92,"props":3819,"children":3820},{"style":866},[3821],{"type":64,"value":974},{"type":58,"tag":92,"props":3823,"children":3824},{"style":105},[3825],{"type":64,"value":3826}," comments:create",{"type":58,"tag":92,"props":3828,"children":3829},{"style":866},[3830],{"type":64,"value":2294},{"type":58,"tag":92,"props":3832,"children":3834},{"class":94,"line":3833},100,[3835,3840],{"type":58,"tag":92,"props":3836,"children":3837},{"style":948},[3838],{"type":64,"value":3839},"  tokens",{"type":58,"tag":92,"props":3841,"children":3842},{"style":866},[3843],{"type":64,"value":2229},{"type":58,"tag":92,"props":3845,"children":3847},{"class":94,"line":3846},101,[3848,3852,3857,3861],{"type":58,"tag":92,"props":3849,"children":3850},{"style":866},[3851],{"type":64,"value":2332},{"type":58,"tag":92,"props":3853,"children":3854},{"style":948},[3855],{"type":64,"value":3856}," token",{"type":58,"tag":92,"props":3858,"children":3859},{"style":866},[3860],{"type":64,"value":956},{"type":58,"tag":92,"props":3862,"children":3863},{"style":105},[3864],{"type":64,"value":3865}," lin_test_admin\n",{"type":58,"tag":92,"props":3867,"children":3869},{"class":94,"line":3868},102,[3870,3875,3879],{"type":58,"tag":92,"props":3871,"children":3872},{"style":948},[3873],{"type":64,"value":3874},"      user",{"type":58,"tag":92,"props":3876,"children":3877},{"style":866},[3878],{"type":64,"value":956},{"type":58,"tag":92,"props":3880,"children":3881},{"style":105},[3882],{"type":64,"value":3479},{"type":58,"tag":92,"props":3884,"children":3886},{"class":94,"line":3885},103,[3887,3891,3895,3899,3903,3907,3911,3915,3919,3923,3927,3931,3936],{"type":58,"tag":92,"props":3888,"children":3889},{"style":948},[3890],{"type":64,"value":3786},{"type":58,"tag":92,"props":3892,"children":3893},{"style":866},[3894],{"type":64,"value":956},{"type":58,"tag":92,"props":3896,"children":3897},{"style":866},[3898],{"type":64,"value":2275},{"type":58,"tag":92,"props":3900,"children":3901},{"style":105},[3902],{"type":64,"value":3799},{"type":58,"tag":92,"props":3904,"children":3905},{"style":866},[3906],{"type":64,"value":974},{"type":58,"tag":92,"props":3908,"children":3909},{"style":105},[3910],{"type":64,"value":3808},{"type":58,"tag":92,"props":3912,"children":3913},{"style":866},[3914],{"type":64,"value":974},{"type":58,"tag":92,"props":3916,"children":3917},{"style":105},[3918],{"type":64,"value":3817},{"type":58,"tag":92,"props":3920,"children":3921},{"style":866},[3922],{"type":64,"value":974},{"type":58,"tag":92,"props":3924,"children":3925},{"style":105},[3926],{"type":64,"value":3826},{"type":58,"tag":92,"props":3928,"children":3929},{"style":866},[3930],{"type":64,"value":974},{"type":58,"tag":92,"props":3932,"children":3933},{"style":105},[3934],{"type":64,"value":3935}," admin",{"type":58,"tag":92,"props":3937,"children":3938},{"style":866},[3939],{"type":64,"value":2294},{"type":58,"tag":92,"props":3941,"children":3943},{"class":94,"line":3942},104,[3944],{"type":58,"tag":92,"props":3945,"children":3946},{"emptyLinePlaceholder":358},[3947],{"type":64,"value":361},{"type":58,"tag":92,"props":3949,"children":3951},{"class":94,"line":3950},105,[3952,3956],{"type":58,"tag":92,"props":3953,"children":3954},{"style":948},[3955],{"type":64,"value":33},{"type":58,"tag":92,"props":3957,"children":3958},{"style":866},[3959],{"type":64,"value":2229},{"type":58,"tag":92,"props":3961,"children":3963},{"class":94,"line":3962},106,[3964,3968],{"type":58,"tag":92,"props":3965,"children":3966},{"style":948},[3967],{"type":64,"value":2320},{"type":58,"tag":92,"props":3969,"children":3970},{"style":866},[3971],{"type":64,"value":2229},{"type":58,"tag":92,"props":3973,"children":3975},{"class":94,"line":3974},107,[3976,3980,3984,3988],{"type":58,"tag":92,"props":3977,"children":3978},{"style":866},[3979],{"type":64,"value":2332},{"type":58,"tag":92,"props":3981,"children":3982},{"style":948},[3983],{"type":64,"value":2954},{"type":58,"tag":92,"props":3985,"children":3986},{"style":866},[3987],{"type":64,"value":956},{"type":58,"tag":92,"props":3989,"children":3990},{"style":105},[3991],{"type":64,"value":3992}," testuser@icloud.com\n",{"type":58,"tag":92,"props":3994,"children":3996},{"class":94,"line":3995},108,[3997,4001,4005],{"type":58,"tag":92,"props":3998,"children":3999},{"style":948},[4000],{"type":64,"value":2354},{"type":58,"tag":92,"props":4002,"children":4003},{"style":866},[4004],{"type":64,"value":956},{"type":58,"tag":92,"props":4006,"children":4007},{"style":105},[4008],{"type":64,"value":2980},{"type":58,"tag":92,"props":4010,"children":4012},{"class":94,"line":4011},109,[4013,4017],{"type":58,"tag":92,"props":4014,"children":4015},{"style":948},[4016],{"type":64,"value":2989},{"type":58,"tag":92,"props":4018,"children":4019},{"style":866},[4020],{"type":64,"value":2229},{"type":58,"tag":92,"props":4022,"children":4024},{"class":94,"line":4023},110,[4025,4029,4033,4037],{"type":58,"tag":92,"props":4026,"children":4027},{"style":866},[4028],{"type":64,"value":2332},{"type":58,"tag":92,"props":4030,"children":4031},{"style":948},[4032],{"type":64,"value":2519},{"type":58,"tag":92,"props":4034,"children":4035},{"style":866},[4036],{"type":64,"value":956},{"type":58,"tag":92,"props":4038,"children":4039},{"style":105},[4040],{"type":64,"value":4041}," com.example.app\n",{"type":58,"tag":92,"props":4043,"children":4045},{"class":94,"line":4044},111,[4046,4051,4055],{"type":58,"tag":92,"props":4047,"children":4048},{"style":948},[4049],{"type":64,"value":4050},"      team_id",{"type":58,"tag":92,"props":4052,"children":4053},{"style":866},[4054],{"type":64,"value":956},{"type":58,"tag":92,"props":4056,"children":4057},{"style":105},[4058],{"type":64,"value":4059}," TEAM001\n",{"type":58,"tag":92,"props":4061,"children":4063},{"class":94,"line":4062},112,[4064,4068,4072],{"type":58,"tag":92,"props":4065,"children":4066},{"style":948},[4067],{"type":64,"value":2354},{"type":58,"tag":92,"props":4069,"children":4070},{"style":866},[4071],{"type":64,"value":956},{"type":58,"tag":92,"props":4073,"children":4074},{"style":105},[4075],{"type":64,"value":4076}," My Apple App\n",{"type":58,"tag":92,"props":4078,"children":4080},{"class":94,"line":4079},113,[4081,4085],{"type":58,"tag":92,"props":4082,"children":4083},{"style":948},[4084],{"type":64,"value":2571},{"type":58,"tag":92,"props":4086,"children":4087},{"style":866},[4088],{"type":64,"value":2229},{"type":58,"tag":92,"props":4090,"children":4092},{"class":94,"line":4091},114,[4093,4097],{"type":58,"tag":92,"props":4094,"children":4095},{"style":866},[4096],{"type":64,"value":2584},{"type":58,"tag":92,"props":4098,"children":4099},{"style":105},[4100],{"type":64,"value":4101}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\n",{"type":58,"tag":92,"props":4103,"children":4105},{"class":94,"line":4104},115,[4106],{"type":58,"tag":92,"props":4107,"children":4108},{"emptyLinePlaceholder":358},[4109],{"type":64,"value":361},{"type":58,"tag":92,"props":4111,"children":4113},{"class":94,"line":4112},116,[4114,4118],{"type":58,"tag":92,"props":4115,"children":4116},{"style":948},[4117],{"type":64,"value":24},{"type":58,"tag":92,"props":4119,"children":4120},{"style":866},[4121],{"type":64,"value":2229},{"type":58,"tag":92,"props":4123,"children":4125},{"class":94,"line":4124},117,[4126,4130],{"type":58,"tag":92,"props":4127,"children":4128},{"style":948},[4129],{"type":64,"value":2320},{"type":58,"tag":92,"props":4131,"children":4132},{"style":866},[4133],{"type":64,"value":2229},{"type":58,"tag":92,"props":4135,"children":4137},{"class":94,"line":4136},118,[4138,4142,4146,4150],{"type":58,"tag":92,"props":4139,"children":4140},{"style":866},[4141],{"type":64,"value":2332},{"type":58,"tag":92,"props":4143,"children":4144},{"style":948},[4145],{"type":64,"value":2954},{"type":58,"tag":92,"props":4147,"children":4148},{"style":866},[4149],{"type":64,"value":956},{"type":58,"tag":92,"props":4151,"children":4152},{"style":105},[4153],{"type":64,"value":4154}," testuser@outlook.com\n",{"type":58,"tag":92,"props":4156,"children":4158},{"class":94,"line":4157},119,[4159,4163,4167],{"type":58,"tag":92,"props":4160,"children":4161},{"style":948},[4162],{"type":64,"value":2354},{"type":58,"tag":92,"props":4164,"children":4165},{"style":866},[4166],{"type":64,"value":956},{"type":58,"tag":92,"props":4168,"children":4169},{"style":105},[4170],{"type":64,"value":2980},{"type":58,"tag":92,"props":4172,"children":4174},{"class":94,"line":4173},120,[4175,4179],{"type":58,"tag":92,"props":4176,"children":4177},{"style":948},[4178],{"type":64,"value":2989},{"type":58,"tag":92,"props":4180,"children":4181},{"style":866},[4182],{"type":64,"value":2229},{"type":58,"tag":92,"props":4184,"children":4186},{"class":94,"line":4185},121,[4187,4191,4195,4199],{"type":58,"tag":92,"props":4188,"children":4189},{"style":866},[4190],{"type":64,"value":2332},{"type":58,"tag":92,"props":4192,"children":4193},{"style":948},[4194],{"type":64,"value":2519},{"type":58,"tag":92,"props":4196,"children":4197},{"style":866},[4198],{"type":64,"value":956},{"type":58,"tag":92,"props":4200,"children":4201},{"style":105},[4202],{"type":64,"value":4203}," example-client-id\n",{"type":58,"tag":92,"props":4205,"children":4207},{"class":94,"line":4206},122,[4208,4212,4216],{"type":58,"tag":92,"props":4209,"children":4210},{"style":948},[4211],{"type":64,"value":2536},{"type":58,"tag":92,"props":4213,"children":4214},{"style":866},[4215],{"type":64,"value":956},{"type":58,"tag":92,"props":4217,"children":4218},{"style":105},[4219],{"type":64,"value":4220}," example-client-secret\n",{"type":58,"tag":92,"props":4222,"children":4224},{"class":94,"line":4223},123,[4225,4229,4233],{"type":58,"tag":92,"props":4226,"children":4227},{"style":948},[4228],{"type":64,"value":2354},{"type":58,"tag":92,"props":4230,"children":4231},{"style":866},[4232],{"type":64,"value":956},{"type":58,"tag":92,"props":4234,"children":4235},{"style":105},[4236],{"type":64,"value":4237}," My Microsoft App\n",{"type":58,"tag":92,"props":4239,"children":4241},{"class":94,"line":4240},124,[4242,4246],{"type":58,"tag":92,"props":4243,"children":4244},{"style":948},[4245],{"type":64,"value":2571},{"type":58,"tag":92,"props":4247,"children":4248},{"style":866},[4249],{"type":64,"value":2229},{"type":58,"tag":92,"props":4251,"children":4253},{"class":94,"line":4252},125,[4254,4258],{"type":58,"tag":92,"props":4255,"children":4256},{"style":866},[4257],{"type":64,"value":2584},{"type":58,"tag":92,"props":4259,"children":4260},{"style":105},[4261],{"type":64,"value":4262}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fmicrosoft-entra-id\n",{"type":58,"tag":92,"props":4264,"children":4266},{"class":94,"line":4265},126,[4267],{"type":58,"tag":92,"props":4268,"children":4269},{"emptyLinePlaceholder":358},[4270],{"type":64,"value":361},{"type":58,"tag":92,"props":4272,"children":4274},{"class":94,"line":4273},127,[4275,4279],{"type":58,"tag":92,"props":4276,"children":4277},{"style":948},[4278],{"type":64,"value":36},{"type":58,"tag":92,"props":4280,"children":4281},{"style":866},[4282],{"type":64,"value":2229},{"type":58,"tag":92,"props":4284,"children":4286},{"class":94,"line":4285},128,[4287,4292,4296],{"type":58,"tag":92,"props":4288,"children":4289},{"style":948},[4290],{"type":64,"value":4291},"  region",{"type":58,"tag":92,"props":4293,"children":4294},{"style":866},[4295],{"type":64,"value":956},{"type":58,"tag":92,"props":4297,"children":4298},{"style":105},[4299],{"type":64,"value":4300}," us-east-1\n",{"type":58,"tag":92,"props":4302,"children":4304},{"class":94,"line":4303},129,[4305,4310],{"type":58,"tag":92,"props":4306,"children":4307},{"style":948},[4308],{"type":64,"value":4309},"  s3",{"type":58,"tag":92,"props":4311,"children":4312},{"style":866},[4313],{"type":64,"value":2229},{"type":58,"tag":92,"props":4315,"children":4317},{"class":94,"line":4316},130,[4318,4323],{"type":58,"tag":92,"props":4319,"children":4320},{"style":948},[4321],{"type":64,"value":4322},"    buckets",{"type":58,"tag":92,"props":4324,"children":4325},{"style":866},[4326],{"type":64,"value":2229},{"type":58,"tag":92,"props":4328,"children":4330},{"class":94,"line":4329},131,[4331,4336,4340,4344],{"type":58,"tag":92,"props":4332,"children":4333},{"style":866},[4334],{"type":64,"value":4335},"      -",{"type":58,"tag":92,"props":4337,"children":4338},{"style":948},[4339],{"type":64,"value":2453},{"type":58,"tag":92,"props":4341,"children":4342},{"style":866},[4343],{"type":64,"value":956},{"type":58,"tag":92,"props":4345,"children":4346},{"style":105},[4347],{"type":64,"value":4348}," my-app-bucket\n",{"type":58,"tag":92,"props":4350,"children":4352},{"class":94,"line":4351},132,[4353,4358],{"type":58,"tag":92,"props":4354,"children":4355},{"style":948},[4356],{"type":64,"value":4357},"  sqs",{"type":58,"tag":92,"props":4359,"children":4360},{"style":866},[4361],{"type":64,"value":2229},{"type":58,"tag":92,"props":4363,"children":4365},{"class":94,"line":4364},133,[4366,4371],{"type":58,"tag":92,"props":4367,"children":4368},{"style":948},[4369],{"type":64,"value":4370},"    queues",{"type":58,"tag":92,"props":4372,"children":4373},{"style":866},[4374],{"type":64,"value":2229},{"type":58,"tag":92,"props":4376,"children":4378},{"class":94,"line":4377},134,[4379,4383,4387,4391],{"type":58,"tag":92,"props":4380,"children":4381},{"style":866},[4382],{"type":64,"value":4335},{"type":58,"tag":92,"props":4384,"children":4385},{"style":948},[4386],{"type":64,"value":2453},{"type":58,"tag":92,"props":4388,"children":4389},{"style":866},[4390],{"type":64,"value":956},{"type":58,"tag":92,"props":4392,"children":4393},{"style":105},[4394],{"type":64,"value":4395}," my-app-events\n",{"type":58,"tag":92,"props":4397,"children":4399},{"class":94,"line":4398},135,[4400,4405],{"type":58,"tag":92,"props":4401,"children":4402},{"style":948},[4403],{"type":64,"value":4404},"  iam",{"type":58,"tag":92,"props":4406,"children":4407},{"style":866},[4408],{"type":64,"value":2229},{"type":58,"tag":92,"props":4410,"children":4412},{"class":94,"line":4411},136,[4413,4418],{"type":58,"tag":92,"props":4414,"children":4415},{"style":948},[4416],{"type":64,"value":4417},"    users",{"type":58,"tag":92,"props":4419,"children":4420},{"style":866},[4421],{"type":64,"value":2229},{"type":58,"tag":92,"props":4423,"children":4425},{"class":94,"line":4424},137,[4426,4430,4435,4439],{"type":58,"tag":92,"props":4427,"children":4428},{"style":866},[4429],{"type":64,"value":4335},{"type":58,"tag":92,"props":4431,"children":4432},{"style":948},[4433],{"type":64,"value":4434}," user_name",{"type":58,"tag":92,"props":4436,"children":4437},{"style":866},[4438],{"type":64,"value":956},{"type":58,"tag":92,"props":4440,"children":4441},{"style":105},[4442],{"type":64,"value":2346},{"type":58,"tag":92,"props":4444,"children":4446},{"class":94,"line":4445},138,[4447,4452,4456],{"type":58,"tag":92,"props":4448,"children":4449},{"style":948},[4450],{"type":64,"value":4451},"        create_access_key",{"type":58,"tag":92,"props":4453,"children":4454},{"style":866},[4455],{"type":64,"value":956},{"type":58,"tag":92,"props":4457,"children":4458},{"style":2813},[4459],{"type":64,"value":2816},{"type":58,"tag":92,"props":4461,"children":4463},{"class":94,"line":4462},139,[4464,4469],{"type":58,"tag":92,"props":4465,"children":4466},{"style":948},[4467],{"type":64,"value":4468},"    roles",{"type":58,"tag":92,"props":4470,"children":4471},{"style":866},[4472],{"type":64,"value":2229},{"type":58,"tag":92,"props":4474,"children":4476},{"class":94,"line":4475},140,[4477,4481,4486,4490],{"type":58,"tag":92,"props":4478,"children":4479},{"style":866},[4480],{"type":64,"value":4335},{"type":58,"tag":92,"props":4482,"children":4483},{"style":948},[4484],{"type":64,"value":4485}," role_name",{"type":58,"tag":92,"props":4487,"children":4488},{"style":866},[4489],{"type":64,"value":956},{"type":58,"tag":92,"props":4491,"children":4492},{"style":105},[4493],{"type":64,"value":4494}," lambda-execution-role\n",{"type":58,"tag":585,"props":4496,"children":4498},{"id":4497},"auth",[4499],{"type":64,"value":4500},"Auth",{"type":58,"tag":67,"props":4502,"children":4503},{},[4504,4506,4512,4513,4519,4521,4527,4529,4535],{"type":64,"value":4505},"Tokens map to users. Pass them as ",{"type":58,"tag":88,"props":4507,"children":4509},{"className":4508},[],[4510],{"type":64,"value":4511},"Authorization: Bearer \u003Ctoken>",{"type":64,"value":751},{"type":58,"tag":88,"props":4514,"children":4516},{"className":4515},[],[4517],{"type":64,"value":4518},"Authorization: token \u003Ctoken>",{"type":64,"value":4520},". When no tokens are configured, a default ",{"type":58,"tag":88,"props":4522,"children":4524},{"className":4523},[],[4525],{"type":64,"value":4526},"test_token_admin",{"type":64,"value":4528}," is created for the ",{"type":58,"tag":88,"props":4530,"children":4532},{"className":4531},[],[4533],{"type":64,"value":4534},"admin",{"type":64,"value":4536}," user.",{"type":58,"tag":67,"props":4538,"children":4539},{},[4540],{"type":64,"value":4541},"Each service also has a fallback user. If no token is provided, requests authenticate as the first seeded user.",{"type":58,"tag":73,"props":4543,"children":4545},{"id":4544},"https-with-portless",[4546],{"type":64,"value":4547},"HTTPS with portless",{"type":58,"tag":67,"props":4549,"children":4550},{},[4551,4559,4561,4566],{"type":58,"tag":4552,"props":4553,"children":4557},"a",{"href":4554,"rel":4555},"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fportless",[4556],"nofollow",[4558],{"type":64,"value":1441},{"type":64,"value":4560}," gives emulators trusted HTTPS URLs with auto-generated certs. Use the ",{"type":58,"tag":88,"props":4562,"children":4564},{"className":4563},[],[4565],{"type":64,"value":728},{"type":64,"value":4567}," flag to auto-register each service as a portless alias:",{"type":58,"tag":80,"props":4569,"children":4571},{"className":82,"code":4570,"language":84,"meta":85,"style":85},"npx emulate start --portless\n# github  https:\u002F\u002Fgithub.emulate.localhost\n# google  https:\u002F\u002Fgoogle.emulate.localhost\n# ...\n",[4572],{"type":58,"tag":88,"props":4573,"children":4574},{"__ignoreMap":85},[4575,4596,4604,4612],{"type":58,"tag":92,"props":4576,"children":4577},{"class":94,"line":95},[4578,4582,4586,4591],{"type":58,"tag":92,"props":4579,"children":4580},{"style":99},[4581],{"type":64,"value":102},{"type":58,"tag":92,"props":4583,"children":4584},{"style":105},[4585],{"type":64,"value":383},{"type":58,"tag":92,"props":4587,"children":4588},{"style":105},[4589],{"type":64,"value":4590}," start",{"type":58,"tag":92,"props":4592,"children":4593},{"style":105},[4594],{"type":64,"value":4595}," --portless\n",{"type":58,"tag":92,"props":4597,"children":4598},{"class":94,"line":342},[4599],{"type":58,"tag":92,"props":4600,"children":4601},{"style":336},[4602],{"type":64,"value":4603},"# github  https:\u002F\u002Fgithub.emulate.localhost\n",{"type":58,"tag":92,"props":4605,"children":4606},{"class":94,"line":354},[4607],{"type":58,"tag":92,"props":4608,"children":4609},{"style":336},[4610],{"type":64,"value":4611},"# google  https:\u002F\u002Fgoogle.emulate.localhost\n",{"type":58,"tag":92,"props":4613,"children":4614},{"class":94,"line":364},[4615],{"type":58,"tag":92,"props":4616,"children":4617},{"style":336},[4618],{"type":64,"value":4619},"# ...\n",{"type":58,"tag":67,"props":4621,"children":4622},{},[4623,4625,4631],{"type":64,"value":4624},"This requires the portless proxy to be running (",{"type":58,"tag":88,"props":4626,"children":4628},{"className":4627},[],[4629],{"type":64,"value":4630},"portless proxy start",{"type":64,"value":4632},"). If portless is not installed, emulate will prompt to install it.",{"type":58,"tag":67,"props":4634,"children":4635},{},[4636,4638,4643,4645,4651],{"type":64,"value":4637},"The ",{"type":58,"tag":88,"props":4639,"children":4641},{"className":4640},[],[4642],{"type":64,"value":728},{"type":64,"value":4644}," flag overwrites any existing portless aliases matching ",{"type":58,"tag":88,"props":4646,"children":4648},{"className":4647},[],[4649],{"type":64,"value":4650},"*.emulate",{"type":64,"value":4652},". Aliases are removed automatically when emulate shuts down.",{"type":58,"tag":67,"props":4654,"children":4655},{},[4656],{"type":64,"value":4657},"For a single service behind portless:",{"type":58,"tag":80,"props":4659,"children":4661},{"className":82,"code":4660,"language":84,"meta":85,"style":85},"portless github.emulate emulate start --service github\n",[4662],{"type":58,"tag":88,"props":4663,"children":4664},{"__ignoreMap":85},[4665],{"type":58,"tag":92,"props":4666,"children":4667},{"class":94,"line":95},[4668,4672,4677,4681,4685,4689],{"type":58,"tag":92,"props":4669,"children":4670},{"style":99},[4671],{"type":64,"value":1441},{"type":58,"tag":92,"props":4673,"children":4674},{"style":105},[4675],{"type":64,"value":4676}," github.emulate",{"type":58,"tag":92,"props":4678,"children":4679},{"style":105},[4680],{"type":64,"value":383},{"type":58,"tag":92,"props":4682,"children":4683},{"style":105},[4684],{"type":64,"value":4590},{"type":58,"tag":92,"props":4686,"children":4687},{"style":105},[4688],{"type":64,"value":388},{"type":58,"tag":92,"props":4690,"children":4691},{"style":105},[4692],{"type":64,"value":4693}," github\n",{"type":58,"tag":67,"props":4695,"children":4696},{},[4697],{"type":64,"value":4698},"For a custom base URL without portless (any reverse proxy):",{"type":58,"tag":80,"props":4700,"children":4702},{"className":82,"code":4701,"language":84,"meta":85,"style":85},"npx emulate start --base-url \"https:\u002F\u002F{service}.myproxy.test\"\n# or\nEMULATE_BASE_URL=\"https:\u002F\u002F{service}.myproxy.test\" npx emulate start\n",[4703],{"type":58,"tag":88,"props":4704,"children":4705},{"__ignoreMap":85},[4706,4739,4747],{"type":58,"tag":92,"props":4707,"children":4708},{"class":94,"line":95},[4709,4713,4717,4721,4726,4730,4735],{"type":58,"tag":92,"props":4710,"children":4711},{"style":99},[4712],{"type":64,"value":102},{"type":58,"tag":92,"props":4714,"children":4715},{"style":105},[4716],{"type":64,"value":383},{"type":58,"tag":92,"props":4718,"children":4719},{"style":105},[4720],{"type":64,"value":4590},{"type":58,"tag":92,"props":4722,"children":4723},{"style":105},[4724],{"type":64,"value":4725}," --base-url",{"type":58,"tag":92,"props":4727,"children":4728},{"style":866},[4729],{"type":64,"value":3309},{"type":58,"tag":92,"props":4731,"children":4732},{"style":105},[4733],{"type":64,"value":4734},"https:\u002F\u002F{service}.myproxy.test",{"type":58,"tag":92,"props":4736,"children":4737},{"style":866},[4738],{"type":64,"value":3319},{"type":58,"tag":92,"props":4740,"children":4741},{"class":94,"line":342},[4742],{"type":58,"tag":92,"props":4743,"children":4744},{"style":336},[4745],{"type":64,"value":4746},"# or\n",{"type":58,"tag":92,"props":4748,"children":4749},{"class":94,"line":354},[4750,4754,4758,4763,4767,4771,4776,4780],{"type":58,"tag":92,"props":4751,"children":4752},{"style":872},[4753],{"type":64,"value":777},{"type":58,"tag":92,"props":4755,"children":4756},{"style":866},[4757],{"type":64,"value":925},{"type":58,"tag":92,"props":4759,"children":4760},{"style":866},[4761],{"type":64,"value":4762},"\"",{"type":58,"tag":92,"props":4764,"children":4765},{"style":105},[4766],{"type":64,"value":4734},{"type":58,"tag":92,"props":4768,"children":4769},{"style":866},[4770],{"type":64,"value":4762},{"type":58,"tag":92,"props":4772,"children":4773},{"style":99},[4774],{"type":64,"value":4775}," npx",{"type":58,"tag":92,"props":4777,"children":4778},{"style":105},[4779],{"type":64,"value":383},{"type":58,"tag":92,"props":4781,"children":4782},{"style":105},[4783],{"type":64,"value":4784}," start\n",{"type":58,"tag":67,"props":4786,"children":4787},{},[4788,4789,4794,4796,4801,4803,4809,4811,4817,4819,4824,4826,4831,4833,4838,4840,4845],{"type":64,"value":4637},{"type":58,"tag":88,"props":4790,"children":4792},{"className":4791},[],[4793],{"type":64,"value":800},{"type":64,"value":4795}," env var is automatically set by the ",{"type":58,"tag":88,"props":4797,"children":4799},{"className":4798},[],[4800],{"type":64,"value":1441},{"type":64,"value":4802}," CLI wrapper when running a command through it (e.g. ",{"type":58,"tag":88,"props":4804,"children":4806},{"className":4805},[],[4807],{"type":64,"value":4808},"portless github.emulate emulate start",{"type":64,"value":4810},"), typically to a value like ",{"type":58,"tag":88,"props":4812,"children":4814},{"className":4813},[],[4815],{"type":64,"value":4816},"https:\u002F\u002F{service}.emulate.localhost",{"type":64,"value":4818},". It supports ",{"type":58,"tag":88,"props":4820,"children":4822},{"className":4821},[],[4823],{"type":64,"value":714},{"type":64,"value":4825}," interpolation, just like ",{"type":58,"tag":88,"props":4827,"children":4829},{"className":4828},[],[4830],{"type":64,"value":698},{"type":64,"value":4832}," and ",{"type":58,"tag":88,"props":4834,"children":4836},{"className":4835},[],[4837],{"type":64,"value":777},{"type":64,"value":4839},". When no explicit ",{"type":58,"tag":88,"props":4841,"children":4843},{"className":4842},[],[4844],{"type":64,"value":792},{"type":64,"value":4846}," is provided, it is used as a fallback.",{"type":58,"tag":67,"props":4848,"children":4849},{},[4850],{"type":64,"value":4851},"Per-service overrides in the seed config (these take highest priority over all other base URL sources):",{"type":58,"tag":80,"props":4853,"children":4855},{"className":2210,"code":4854,"language":2212,"meta":85,"style":85},"github:\n  baseUrl: https:\u002F\u002Fgithub.emulate.localhost\ngoogle:\n  baseUrl: https:\u002F\u002Fgoogle.emulate.localhost\n",[4856],{"type":58,"tag":88,"props":4857,"children":4858},{"__ignoreMap":85},[4859,4870,4887,4898],{"type":58,"tag":92,"props":4860,"children":4861},{"class":94,"line":95},[4862,4866],{"type":58,"tag":92,"props":4863,"children":4864},{"style":948},[4865],{"type":64,"value":18},{"type":58,"tag":92,"props":4867,"children":4868},{"style":866},[4869],{"type":64,"value":2229},{"type":58,"tag":92,"props":4871,"children":4872},{"class":94,"line":342},[4873,4878,4882],{"type":58,"tag":92,"props":4874,"children":4875},{"style":948},[4876],{"type":64,"value":4877},"  baseUrl",{"type":58,"tag":92,"props":4879,"children":4880},{"style":866},[4881],{"type":64,"value":956},{"type":58,"tag":92,"props":4883,"children":4884},{"style":105},[4885],{"type":64,"value":4886}," https:\u002F\u002Fgithub.emulate.localhost\n",{"type":58,"tag":92,"props":4888,"children":4889},{"class":94,"line":354},[4890,4894],{"type":58,"tag":92,"props":4891,"children":4892},{"style":948},[4893],{"type":64,"value":2925},{"type":58,"tag":92,"props":4895,"children":4896},{"style":866},[4897],{"type":64,"value":2229},{"type":58,"tag":92,"props":4899,"children":4900},{"class":94,"line":364},[4901,4905,4909],{"type":58,"tag":92,"props":4902,"children":4903},{"style":948},[4904],{"type":64,"value":4877},{"type":58,"tag":92,"props":4906,"children":4907},{"style":866},[4908],{"type":64,"value":956},{"type":58,"tag":92,"props":4910,"children":4911},{"style":105},[4912],{"type":64,"value":4913}," https:\u002F\u002Fgoogle.emulate.localhost\n",{"type":58,"tag":73,"props":4915,"children":4917},{"id":4916},"pointing-your-app-at-the-emulator",[4918],{"type":64,"value":4919},"Pointing Your App at the Emulator",{"type":58,"tag":67,"props":4921,"children":4922},{},[4923],{"type":64,"value":4924},"Set environment variables to override real service URLs:",{"type":58,"tag":80,"props":4926,"children":4928},{"className":82,"code":4927,"language":84,"meta":85,"style":85},"VERCEL_EMULATOR_URL=http:\u002F\u002Flocalhost:4000\nGITHUB_EMULATOR_URL=http:\u002F\u002Flocalhost:4001\nGOOGLE_EMULATOR_URL=http:\u002F\u002Flocalhost:4002\nSLACK_EMULATOR_URL=http:\u002F\u002Flocalhost:4003\nAPPLE_EMULATOR_URL=http:\u002F\u002Flocalhost:4004\nMICROSOFT_EMULATOR_URL=http:\u002F\u002Flocalhost:4005\nAWS_EMULATOR_URL=http:\u002F\u002Flocalhost:4007\nLINEAR_EMULATOR_URL=http:\u002F\u002Flocalhost:4012\n",[4929],{"type":58,"tag":88,"props":4930,"children":4931},{"__ignoreMap":85},[4932,4948,4964,4981,4998,5015,5032,5049],{"type":58,"tag":92,"props":4933,"children":4934},{"class":94,"line":95},[4935,4939,4943],{"type":58,"tag":92,"props":4936,"children":4937},{"style":872},[4938],{"type":64,"value":1937},{"type":58,"tag":92,"props":4940,"children":4941},{"style":866},[4942],{"type":64,"value":925},{"type":58,"tag":92,"props":4944,"children":4945},{"style":105},[4946],{"type":64,"value":4947},"http:\u002F\u002Flocalhost:4000\n",{"type":58,"tag":92,"props":4949,"children":4950},{"class":94,"line":342},[4951,4955,4959],{"type":58,"tag":92,"props":4952,"children":4953},{"style":872},[4954],{"type":64,"value":1895},{"type":58,"tag":92,"props":4956,"children":4957},{"style":866},[4958],{"type":64,"value":925},{"type":58,"tag":92,"props":4960,"children":4961},{"style":105},[4962],{"type":64,"value":4963},"http:\u002F\u002Flocalhost:4001\n",{"type":58,"tag":92,"props":4965,"children":4966},{"class":94,"line":354},[4967,4972,4976],{"type":58,"tag":92,"props":4968,"children":4969},{"style":872},[4970],{"type":64,"value":4971},"GOOGLE_EMULATOR_URL",{"type":58,"tag":92,"props":4973,"children":4974},{"style":866},[4975],{"type":64,"value":925},{"type":58,"tag":92,"props":4977,"children":4978},{"style":105},[4979],{"type":64,"value":4980},"http:\u002F\u002Flocalhost:4002\n",{"type":58,"tag":92,"props":4982,"children":4983},{"class":94,"line":364},[4984,4989,4993],{"type":58,"tag":92,"props":4985,"children":4986},{"style":872},[4987],{"type":64,"value":4988},"SLACK_EMULATOR_URL",{"type":58,"tag":92,"props":4990,"children":4991},{"style":866},[4992],{"type":64,"value":925},{"type":58,"tag":92,"props":4994,"children":4995},{"style":105},[4996],{"type":64,"value":4997},"http:\u002F\u002Flocalhost:4003\n",{"type":58,"tag":92,"props":4999,"children":5000},{"class":94,"line":373},[5001,5006,5010],{"type":58,"tag":92,"props":5002,"children":5003},{"style":872},[5004],{"type":64,"value":5005},"APPLE_EMULATOR_URL",{"type":58,"tag":92,"props":5007,"children":5008},{"style":866},[5009],{"type":64,"value":925},{"type":58,"tag":92,"props":5011,"children":5012},{"style":105},[5013],{"type":64,"value":5014},"http:\u002F\u002Flocalhost:4004\n",{"type":58,"tag":92,"props":5016,"children":5017},{"class":94,"line":396},[5018,5023,5027],{"type":58,"tag":92,"props":5019,"children":5020},{"style":872},[5021],{"type":64,"value":5022},"MICROSOFT_EMULATOR_URL",{"type":58,"tag":92,"props":5024,"children":5025},{"style":866},[5026],{"type":64,"value":925},{"type":58,"tag":92,"props":5028,"children":5029},{"style":105},[5030],{"type":64,"value":5031},"http:\u002F\u002Flocalhost:4005\n",{"type":58,"tag":92,"props":5033,"children":5034},{"class":94,"line":404},[5035,5040,5044],{"type":58,"tag":92,"props":5036,"children":5037},{"style":872},[5038],{"type":64,"value":5039},"AWS_EMULATOR_URL",{"type":58,"tag":92,"props":5041,"children":5042},{"style":866},[5043],{"type":64,"value":925},{"type":58,"tag":92,"props":5045,"children":5046},{"style":105},[5047],{"type":64,"value":5048},"http:\u002F\u002Flocalhost:4007\n",{"type":58,"tag":92,"props":5050,"children":5051},{"class":94,"line":413},[5052,5057,5061],{"type":58,"tag":92,"props":5053,"children":5054},{"style":872},[5055],{"type":64,"value":5056},"LINEAR_EMULATOR_URL",{"type":58,"tag":92,"props":5058,"children":5059},{"style":866},[5060],{"type":64,"value":925},{"type":58,"tag":92,"props":5062,"children":5063},{"style":105},[5064],{"type":64,"value":5065},"http:\u002F\u002Flocalhost:4012\n",{"type":58,"tag":67,"props":5067,"children":5068},{},[5069],{"type":64,"value":5070},"Then use these in your app to construct API and OAuth URLs. See each service's skill for SDK-specific override instructions.",{"type":58,"tag":73,"props":5072,"children":5074},{"id":5073},"framework-integration-embedded-mode",[5075],{"type":64,"value":5076},"Framework Integration (Embedded Mode)",{"type":58,"tag":67,"props":5078,"children":5079},{},[5080,5081,5087,5089,5095,5097,5103],{"type":64,"value":4637},{"type":58,"tag":88,"props":5082,"children":5084},{"className":5083},[],[5085],{"type":64,"value":5086},"@emulators\u002Fadapter-next",{"type":64,"value":5088}," package embeds emulators directly into a Next.js app on the same origin. See the ",{"type":58,"tag":5090,"props":5091,"children":5092},"strong",{},[5093],{"type":64,"value":5094},"next",{"type":64,"value":5096}," skill (",{"type":58,"tag":88,"props":5098,"children":5100},{"className":5099},[],[5101],{"type":64,"value":5102},"skills\u002Fnext\u002FSKILL.md",{"type":64,"value":5104},") for full setup, Auth.js configuration, persistence, and font tracing details.",{"type":58,"tag":67,"props":5106,"children":5107},{},[5108,5109,5115,5117,5122,5123,5129],{"type":64,"value":4637},{"type":58,"tag":88,"props":5110,"children":5112},{"className":5111},[],[5113],{"type":64,"value":5114},"@emulators\u002Fadapter-nuxt",{"type":64,"value":5116}," package embeds emulators directly into a Nuxt app on the same origin. See the ",{"type":58,"tag":5090,"props":5118,"children":5119},{},[5120],{"type":64,"value":5121},"nuxt",{"type":64,"value":5096},{"type":58,"tag":88,"props":5124,"children":5126},{"className":5125},[],[5127],{"type":64,"value":5128},"skills\u002Fnuxt\u002FSKILL.md",{"type":64,"value":5130},") for the server route, Nuxt config, OAuth configuration, and persistence setup.",{"type":58,"tag":73,"props":5132,"children":5134},{"id":5133},"persistence",[5135],{"type":64,"value":5136},"Persistence",{"type":58,"tag":67,"props":5138,"children":5139},{},[5140,5142,5148],{"type":64,"value":5141},"By default, all emulator state is in-memory. For persistence across process restarts and serverless cold starts, use a ",{"type":58,"tag":88,"props":5143,"children":5145},{"className":5144},[],[5146],{"type":64,"value":5147},"PersistenceAdapter",{"type":64,"value":1094},{"type":58,"tag":585,"props":5150,"children":5152},{"id":5151},"built-in-file-persistence",[5153],{"type":64,"value":5154},"Built-in file persistence",{"type":58,"tag":80,"props":5156,"children":5158},{"className":848,"code":5157,"language":850,"meta":85,"style":85},"import { filePersistence } from '@emulators\u002Fcore'\n\n\u002F\u002F CLI or local dev: persists to a JSON file\nconst adapter = filePersistence('.emulate\u002Fstate.json')\n",[5159],{"type":58,"tag":88,"props":5160,"children":5161},{"__ignoreMap":85},[5162,5199,5206,5214],{"type":58,"tag":92,"props":5163,"children":5164},{"class":94,"line":95},[5165,5169,5173,5178,5182,5186,5190,5195],{"type":58,"tag":92,"props":5166,"children":5167},{"style":860},[5168],{"type":64,"value":863},{"type":58,"tag":92,"props":5170,"children":5171},{"style":866},[5172],{"type":64,"value":869},{"type":58,"tag":92,"props":5174,"children":5175},{"style":872},[5176],{"type":64,"value":5177}," filePersistence",{"type":58,"tag":92,"props":5179,"children":5180},{"style":866},[5181],{"type":64,"value":880},{"type":58,"tag":92,"props":5183,"children":5184},{"style":860},[5185],{"type":64,"value":885},{"type":58,"tag":92,"props":5187,"children":5188},{"style":866},[5189],{"type":64,"value":890},{"type":58,"tag":92,"props":5191,"children":5192},{"style":105},[5193],{"type":64,"value":5194},"@emulators\u002Fcore",{"type":58,"tag":92,"props":5196,"children":5197},{"style":866},[5198],{"type":64,"value":899},{"type":58,"tag":92,"props":5200,"children":5201},{"class":94,"line":342},[5202],{"type":58,"tag":92,"props":5203,"children":5204},{"emptyLinePlaceholder":358},[5205],{"type":64,"value":361},{"type":58,"tag":92,"props":5207,"children":5208},{"class":94,"line":354},[5209],{"type":58,"tag":92,"props":5210,"children":5211},{"style":336},[5212],{"type":64,"value":5213},"\u002F\u002F CLI or local dev: persists to a JSON file\n",{"type":58,"tag":92,"props":5215,"children":5216},{"class":94,"line":364},[5217,5221,5226,5230,5234,5238,5242,5247,5251],{"type":58,"tag":92,"props":5218,"children":5219},{"style":912},[5220],{"type":64,"value":915},{"type":58,"tag":92,"props":5222,"children":5223},{"style":872},[5224],{"type":64,"value":5225}," adapter ",{"type":58,"tag":92,"props":5227,"children":5228},{"style":866},[5229],{"type":64,"value":925},{"type":58,"tag":92,"props":5231,"children":5232},{"style":933},[5233],{"type":64,"value":5177},{"type":58,"tag":92,"props":5235,"children":5236},{"style":872},[5237],{"type":64,"value":940},{"type":58,"tag":92,"props":5239,"children":5240},{"style":866},[5241],{"type":64,"value":969},{"type":58,"tag":92,"props":5243,"children":5244},{"style":105},[5245],{"type":64,"value":5246},".emulate\u002Fstate.json",{"type":58,"tag":92,"props":5248,"children":5249},{"style":866},[5250],{"type":64,"value":969},{"type":58,"tag":92,"props":5252,"children":5253},{"style":872},[5254],{"type":64,"value":997},{"type":58,"tag":585,"props":5256,"children":5258},{"id":5257},"custom-adapters",[5259],{"type":64,"value":5260},"Custom adapters",{"type":58,"tag":80,"props":5262,"children":5264},{"className":848,"code":5263,"language":850,"meta":85,"style":85},"import type { PersistenceAdapter } from '@emulators\u002Fcore'\n\nconst kvAdapter: PersistenceAdapter = {\n  async load() { return await kv.get('emulate-state') },\n  async save(data) { await kv.set('emulate-state', data) },\n}\n",[5265],{"type":58,"tag":88,"props":5266,"children":5267},{"__ignoreMap":85},[5268,5308,5315,5343,5414,5494],{"type":58,"tag":92,"props":5269,"children":5270},{"class":94,"line":95},[5271,5275,5279,5283,5288,5292,5296,5300,5304],{"type":58,"tag":92,"props":5272,"children":5273},{"style":860},[5274],{"type":64,"value":863},{"type":58,"tag":92,"props":5276,"children":5277},{"style":860},[5278],{"type":64,"value":1565},{"type":58,"tag":92,"props":5280,"children":5281},{"style":866},[5282],{"type":64,"value":869},{"type":58,"tag":92,"props":5284,"children":5285},{"style":872},[5286],{"type":64,"value":5287}," PersistenceAdapter",{"type":58,"tag":92,"props":5289,"children":5290},{"style":866},[5291],{"type":64,"value":880},{"type":58,"tag":92,"props":5293,"children":5294},{"style":860},[5295],{"type":64,"value":885},{"type":58,"tag":92,"props":5297,"children":5298},{"style":866},[5299],{"type":64,"value":890},{"type":58,"tag":92,"props":5301,"children":5302},{"style":105},[5303],{"type":64,"value":5194},{"type":58,"tag":92,"props":5305,"children":5306},{"style":866},[5307],{"type":64,"value":899},{"type":58,"tag":92,"props":5309,"children":5310},{"class":94,"line":342},[5311],{"type":58,"tag":92,"props":5312,"children":5313},{"emptyLinePlaceholder":358},[5314],{"type":64,"value":361},{"type":58,"tag":92,"props":5316,"children":5317},{"class":94,"line":354},[5318,5322,5327,5331,5335,5339],{"type":58,"tag":92,"props":5319,"children":5320},{"style":912},[5321],{"type":64,"value":915},{"type":58,"tag":92,"props":5323,"children":5324},{"style":872},[5325],{"type":64,"value":5326}," kvAdapter",{"type":58,"tag":92,"props":5328,"children":5329},{"style":866},[5330],{"type":64,"value":956},{"type":58,"tag":92,"props":5332,"children":5333},{"style":99},[5334],{"type":64,"value":5287},{"type":58,"tag":92,"props":5336,"children":5337},{"style":866},[5338],{"type":64,"value":1900},{"type":58,"tag":92,"props":5340,"children":5341},{"style":866},[5342],{"type":64,"value":1676},{"type":58,"tag":92,"props":5344,"children":5345},{"class":94,"line":364},[5346,5351,5356,5360,5364,5369,5373,5378,5382,5387,5391,5395,5400,5404,5409],{"type":58,"tag":92,"props":5347,"children":5348},{"style":912},[5349],{"type":64,"value":5350},"  async",{"type":58,"tag":92,"props":5352,"children":5353},{"style":948},[5354],{"type":64,"value":5355}," load",{"type":58,"tag":92,"props":5357,"children":5358},{"style":866},[5359],{"type":64,"value":1989},{"type":58,"tag":92,"props":5361,"children":5362},{"style":866},[5363],{"type":64,"value":869},{"type":58,"tag":92,"props":5365,"children":5366},{"style":860},[5367],{"type":64,"value":5368}," return",{"type":58,"tag":92,"props":5370,"children":5371},{"style":860},[5372],{"type":64,"value":930},{"type":58,"tag":92,"props":5374,"children":5375},{"style":872},[5376],{"type":64,"value":5377}," kv",{"type":58,"tag":92,"props":5379,"children":5380},{"style":866},[5381],{"type":64,"value":1094},{"type":58,"tag":92,"props":5383,"children":5384},{"style":933},[5385],{"type":64,"value":5386},"get",{"type":58,"tag":92,"props":5388,"children":5389},{"style":948},[5390],{"type":64,"value":940},{"type":58,"tag":92,"props":5392,"children":5393},{"style":866},[5394],{"type":64,"value":969},{"type":58,"tag":92,"props":5396,"children":5397},{"style":105},[5398],{"type":64,"value":5399},"emulate-state",{"type":58,"tag":92,"props":5401,"children":5402},{"style":866},[5403],{"type":64,"value":969},{"type":58,"tag":92,"props":5405,"children":5406},{"style":948},[5407],{"type":64,"value":5408},") ",{"type":58,"tag":92,"props":5410,"children":5411},{"style":866},[5412],{"type":64,"value":5413},"},\n",{"type":58,"tag":92,"props":5415,"children":5416},{"class":94,"line":373},[5417,5421,5426,5430,5436,5440,5444,5448,5452,5456,5461,5465,5469,5473,5477,5481,5486,5490],{"type":58,"tag":92,"props":5418,"children":5419},{"style":912},[5420],{"type":64,"value":5350},{"type":58,"tag":92,"props":5422,"children":5423},{"style":948},[5424],{"type":64,"value":5425}," save",{"type":58,"tag":92,"props":5427,"children":5428},{"style":866},[5429],{"type":64,"value":940},{"type":58,"tag":92,"props":5431,"children":5433},{"style":5432},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[5434],{"type":64,"value":5435},"data",{"type":58,"tag":92,"props":5437,"children":5438},{"style":866},[5439],{"type":64,"value":1793},{"type":58,"tag":92,"props":5441,"children":5442},{"style":866},[5443],{"type":64,"value":869},{"type":58,"tag":92,"props":5445,"children":5446},{"style":860},[5447],{"type":64,"value":930},{"type":58,"tag":92,"props":5449,"children":5450},{"style":872},[5451],{"type":64,"value":5377},{"type":58,"tag":92,"props":5453,"children":5454},{"style":866},[5455],{"type":64,"value":1094},{"type":58,"tag":92,"props":5457,"children":5458},{"style":933},[5459],{"type":64,"value":5460},"set",{"type":58,"tag":92,"props":5462,"children":5463},{"style":948},[5464],{"type":64,"value":940},{"type":58,"tag":92,"props":5466,"children":5467},{"style":866},[5468],{"type":64,"value":969},{"type":58,"tag":92,"props":5470,"children":5471},{"style":105},[5472],{"type":64,"value":5399},{"type":58,"tag":92,"props":5474,"children":5475},{"style":866},[5476],{"type":64,"value":969},{"type":58,"tag":92,"props":5478,"children":5479},{"style":866},[5480],{"type":64,"value":974},{"type":58,"tag":92,"props":5482,"children":5483},{"style":872},[5484],{"type":64,"value":5485}," data",{"type":58,"tag":92,"props":5487,"children":5488},{"style":948},[5489],{"type":64,"value":5408},{"type":58,"tag":92,"props":5491,"children":5492},{"style":866},[5493],{"type":64,"value":5413},{"type":58,"tag":92,"props":5495,"children":5496},{"class":94,"line":396},[5497],{"type":58,"tag":92,"props":5498,"children":5499},{"style":866},[5500],{"type":64,"value":5501},"}\n",{"type":58,"tag":67,"props":5503,"children":5504},{},[5505],{"type":64,"value":5506},"State is loaded on cold start and saved after every mutating request (POST, PUT, PATCH, DELETE). Saves are serialized to prevent race conditions.",{"type":58,"tag":73,"props":5508,"children":5510},{"id":5509},"architecture",[5511],{"type":64,"value":5512},"Architecture",{"type":58,"tag":80,"props":5514,"children":5518},{"className":5515,"code":5517,"language":64},[5516],"language-text","packages\u002F\n  emulate\u002F           # CLI entry point + programmatic API\n  @emulators\u002F\n    core\u002F            # HTTP server, Store, plugin interface, middleware\n    adapter-next\u002F    # Next.js App Router integration\n    adapter-nuxt\u002F    # Nuxt server route integration\n    vercel\u002F          # Vercel API service plugin\n    github\u002F          # GitHub API service plugin\n    google\u002F          # Google OAuth 2.0 \u002F OIDC plugin\n    slack\u002F           # Slack Web API, OAuth, incoming webhooks plugin\n    linear\u002F          # Linear GraphQL API, OAuth, webhooks plugin\n    twilio\u002F          # Twilio Messaging, Verify, Voice, webhooks plugin\n    apple\u002F           # Sign in with Apple \u002F OIDC plugin\n    microsoft\u002F       # Microsoft Entra ID OAuth 2.0 \u002F OIDC plugin\n    aws\u002F             # AWS S3, SQS, IAM, STS plugin\n",[5519],{"type":58,"tag":88,"props":5520,"children":5521},{"__ignoreMap":85},[5522],{"type":64,"value":5517},{"type":58,"tag":67,"props":5524,"children":5525},{},[5526,5528,5534,5536,5542],{"type":64,"value":5527},"The core provides a generic ",{"type":58,"tag":88,"props":5529,"children":5531},{"className":5530},[],[5532],{"type":64,"value":5533},"Store",{"type":64,"value":5535}," with typed ",{"type":58,"tag":88,"props":5537,"children":5539},{"className":5538},[],[5540],{"type":64,"value":5541},"Collection\u003CT>",{"type":64,"value":5543}," instances supporting CRUD, indexing, filtering, and pagination. Each service plugin registers routes with the shared internal app and uses the store for state.",{"type":58,"tag":5545,"props":5546,"children":5547},"style",{},[5548],{"type":64,"value":5549},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":5551,"total":3833},[5552,5570,5580,5592,5605,5620,5632,5643,5654,5667,5677,5696],{"slug":5553,"name":5553,"fn":5554,"description":5555,"org":5556,"tags":5557,"stars":5567,"repoUrl":5568,"updatedAt":5569},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5558,5561,5564],{"name":5559,"slug":5560,"type":15},"Agents","agents",{"name":5562,"slug":5563,"type":15},"Automation","automation",{"name":5565,"slug":5566,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":5571,"name":5571,"fn":5572,"description":5573,"org":5574,"tags":5575,"stars":5567,"repoUrl":5568,"updatedAt":5579},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5576,5577,5578],{"name":5562,"slug":5563,"type":15},{"name":35,"slug":36,"type":15},{"name":5565,"slug":5566,"type":15},"2026-07-17T06:08:33.665276",{"slug":5581,"name":5581,"fn":5582,"description":5583,"org":5584,"tags":5585,"stars":5567,"repoUrl":5568,"updatedAt":5591},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5586,5587,5588],{"name":5559,"slug":5560,"type":15},{"name":5565,"slug":5566,"type":15},{"name":5589,"slug":5590,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":5593,"name":5593,"fn":5594,"description":5595,"org":5596,"tags":5597,"stars":5567,"repoUrl":5568,"updatedAt":5604},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5598,5599,5600,5601],{"name":29,"slug":30,"type":15},{"name":5562,"slug":5563,"type":15},{"name":5565,"slug":5566,"type":15},{"name":5602,"slug":5603,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":5606,"name":5606,"fn":5607,"description":5608,"org":5609,"tags":5610,"stars":5567,"repoUrl":5568,"updatedAt":5619},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5611,5612,5615,5618],{"name":5565,"slug":5566,"type":15},{"name":5613,"slug":5614,"type":15},"Debugging","debugging",{"name":5616,"slug":5617,"type":15},"QA","qa",{"name":38,"slug":39,"type":15},"2026-07-17T06:07:41.421482",{"slug":5621,"name":5621,"fn":5622,"description":5623,"org":5624,"tags":5625,"stars":5567,"repoUrl":5568,"updatedAt":5631},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5626,5627,5628],{"name":5559,"slug":5560,"type":15},{"name":5565,"slug":5566,"type":15},{"name":5629,"slug":5630,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":27,"name":27,"fn":5633,"description":5634,"org":5635,"tags":5636,"stars":5567,"repoUrl":5568,"updatedAt":5642},"interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5637,5638,5641],{"name":5565,"slug":5566,"type":15},{"name":5639,"slug":5640,"type":15},"Messaging","messaging",{"name":26,"slug":27,"type":15},"2026-07-17T06:08:27.679015",{"slug":5644,"name":5644,"fn":5645,"description":5646,"org":5647,"tags":5648,"stars":5567,"repoUrl":5568,"updatedAt":5653},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5649,5650,5651,5652],{"name":5562,"slug":5563,"type":15},{"name":5565,"slug":5566,"type":15},{"name":38,"slug":39,"type":15},{"name":149,"slug":1046,"type":15},"2026-07-17T06:08:28.349899",{"slug":5655,"name":5655,"fn":5656,"description":5657,"org":5658,"tags":5659,"stars":5664,"repoUrl":5665,"updatedAt":5666},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5660,5663],{"name":5661,"slug":5662,"type":15},"Deployment","deployment",{"name":149,"slug":1046,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":5668,"name":5668,"fn":5669,"description":5670,"org":5671,"tags":5672,"stars":5664,"repoUrl":5665,"updatedAt":5676},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5673,5674,5675],{"name":323,"slug":320,"type":15},{"name":5661,"slug":5662,"type":15},{"name":149,"slug":1046,"type":15},"2026-07-17T06:08:41.84179",{"slug":5678,"name":5678,"fn":5679,"description":5680,"org":5681,"tags":5682,"stars":5664,"repoUrl":5665,"updatedAt":5695},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5683,5686,5689,5692],{"name":5684,"slug":5685,"type":15},"Best Practices","best-practices",{"name":5687,"slug":5688,"type":15},"Frontend","frontend",{"name":5690,"slug":5691,"type":15},"React","react",{"name":5693,"slug":5694,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":5697,"name":5697,"fn":5698,"description":5699,"org":5700,"tags":5701,"stars":5664,"repoUrl":5665,"updatedAt":5710},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5702,5705,5706,5709],{"name":5703,"slug":5704,"type":15},"Cost Optimization","cost-optimization",{"name":5661,"slug":5662,"type":15},{"name":5707,"slug":5708,"type":15},"Performance","performance",{"name":149,"slug":1046,"type":15},"2026-07-17T06:04:08.327515",{"items":5712,"total":475},[5713,5723,5735,5747,5757,5778,5788],{"slug":33,"name":33,"fn":5714,"description":5715,"org":5716,"tags":5717,"stars":40,"repoUrl":41,"updatedAt":5722},"emulate Apple Sign-in for local development","Emulated Sign in with Apple \u002F Apple OIDC for local development and testing. Use when the user needs to test Apple sign-in locally, emulate Apple OIDC discovery, handle Apple token exchange, configure Apple OAuth clients, or work with Apple userinfo without hitting real Apple APIs. Triggers include \"Apple OAuth\", \"emulate Apple\", \"mock Apple login\", \"test Apple sign-in\", \"Sign in with Apple\", \"Apple OIDC\", \"local Apple auth\", or any task requiring a local Apple OAuth\u002FOIDC provider.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5718,5719,5720,5721],{"name":32,"slug":33,"type":15},{"name":4500,"slug":4497,"type":15},{"name":20,"slug":21,"type":15},{"name":38,"slug":39,"type":15},"2026-07-17T06:08:52.141606",{"slug":36,"name":36,"fn":5724,"description":5725,"org":5726,"tags":5727,"stars":40,"repoUrl":41,"updatedAt":5734},"emulate AWS cloud services locally","Emulated AWS cloud services (S3, SQS, IAM, STS) for local development and testing. Use when the user needs to interact with AWS API endpoints locally, test S3 bucket and object operations, emulate SQS queues and messages, manage IAM users\u002Froles\u002Faccess keys, test STS assume role, or work without hitting real AWS APIs. Triggers include \"AWS emulator\", \"emulate AWS\", \"mock S3\", \"local SQS\", \"test IAM\", \"emulate S3\", \"AWS locally\", \"STS assume role\", or any task requiring local AWS service emulation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5728,5729,5732,5733],{"name":35,"slug":36,"type":15},{"name":5730,"slug":5731,"type":15},"Cloud","cloud",{"name":20,"slug":21,"type":15},{"name":38,"slug":39,"type":15},"2026-07-17T06:08:52.818809",{"slug":4,"name":4,"fn":5,"description":6,"org":5736,"tags":5737,"stars":40,"repoUrl":41,"updatedAt":42},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5738,5739,5740,5741,5742,5743,5744,5745,5746],{"name":29,"slug":30,"type":15},{"name":32,"slug":33,"type":15},{"name":35,"slug":36,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":26,"slug":27,"type":15},{"name":38,"slug":39,"type":15},{"slug":18,"name":18,"fn":5748,"description":5749,"org":5750,"tags":5751,"stars":40,"repoUrl":41,"updatedAt":5756},"emulate GitHub API for local development","Emulated GitHub REST API for local development and testing. Use when the user needs to interact with GitHub API endpoints locally, test GitHub integrations, emulate repos\u002Fissues\u002FPRs, set up GitHub OAuth flows, configure GitHub Apps, test webhooks, or work with actions\u002Fchecks without hitting the real GitHub API. Triggers include \"GitHub API\", \"emulate GitHub\", \"mock GitHub\", \"test GitHub OAuth\", \"GitHub App JWT\", \"local GitHub\", or any task requiring a local GitHub API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5752,5753,5754,5755],{"name":29,"slug":30,"type":15},{"name":17,"slug":18,"type":15},{"name":20,"slug":21,"type":15},{"name":38,"slug":39,"type":15},"2026-07-17T06:05:55.104585",{"slug":2925,"name":2925,"fn":5758,"description":5759,"org":5760,"tags":5761,"stars":40,"repoUrl":41,"updatedAt":5777},"emulate Google services for local development","Emulated Google OAuth 2.0, OpenID Connect, Gmail, Calendar, and Drive for local development and testing. Use when the user needs to test Google sign-in locally, emulate OIDC discovery, handle Google token exchange, configure Google OAuth clients, work with Gmail messages\u002Fdrafts\u002Fthreads\u002Flabels, manage Calendar events, upload or list Drive files, or work with Google userinfo without hitting real Google APIs. Triggers include \"Google OAuth\", \"emulate Google\", \"mock Google login\", \"test Google sign-in\", \"OIDC emulator\", \"Google OIDC\", \"Gmail API\", \"Google Calendar\", \"Google Drive\", \"local Google auth\", or any task requiring a local Google API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5762,5763,5766,5767,5770,5773,5774],{"name":4500,"slug":4497,"type":15},{"name":5764,"slug":5765,"type":15},"Gmail","gmail",{"name":174,"slug":2925,"type":15},{"name":5768,"slug":5769,"type":15},"Google Calendar","google-calendar",{"name":5771,"slug":5772,"type":15},"Google Drive","google-drive",{"name":20,"slug":21,"type":15},{"name":5775,"slug":5776,"type":15},"OAuth","oauth","2026-07-17T06:08:59.475325",{"slug":14,"name":14,"fn":5779,"description":5780,"org":5781,"tags":5782,"stars":40,"repoUrl":41,"updatedAt":5787},"emulate Linear API for local development","Emulated Linear GraphQL API for local development and testing. Use when the user needs to test Linear integrations locally, emulate Linear issues, comments, teams, workflow states, OAuth apps, webhooks, agent sessions, or work with the Linear API without hitting the real Linear service. Triggers include \"Linear API\", \"emulate Linear\", \"mock Linear\", \"test Linear OAuth\", \"Linear webhook\", \"Linear agent\", \"local Linear\", or any task requiring a local Linear API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5783,5784,5785,5786],{"name":29,"slug":30,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":38,"slug":39,"type":15},"2026-07-17T06:04:11.495374",{"slug":24,"name":24,"fn":5789,"description":5790,"org":5791,"tags":5792,"stars":40,"repoUrl":41,"updatedAt":5797},"emulate Microsoft Entra ID for local development","Emulated Microsoft Entra ID (Azure AD) OAuth 2.0 \u002F OpenID Connect for local development and testing. Use when the user needs to test Microsoft sign-in locally, emulate Entra ID OIDC discovery, handle Microsoft token exchange, configure Azure AD OAuth clients, work with Microsoft Graph \u002Fme, or test PKCE\u002Fclient credentials flows without hitting real Microsoft APIs. Triggers include \"Microsoft OAuth\", \"Entra ID\", \"Azure AD\", \"emulate Microsoft\", \"mock Microsoft login\", \"test Microsoft sign-in\", \"Microsoft OIDC\", \"local Microsoft auth\", or any task requiring a local Microsoft OAuth\u002FOIDC provider.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[5793,5794,5795,5796],{"name":4500,"slug":4497,"type":15},{"name":20,"slug":21,"type":15},{"name":23,"slug":24,"type":15},{"name":5775,"slug":5776,"type":15},"2026-07-17T06:08:55.822349"]