/Wiki/sources/honojs__hono/2026/https-raw-githubusercontent-com-honojs-examples--ce8c683ce11c-on-your-machine-s0003-c0000.md
On your machine (1) - hono-docs
On your machine (1) Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://raw.githubusercontent.com/honojs/examples/main/stytc...
On your machine (1)
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://raw.githubusercontent.com/honojs/examples/main/stytch-auth/README.md#on-your-machine
Summary
In your terminal clone the project and install dependencies: bash git clone https://github.com/honojs/examples cd examples npm i cd stytch-auth Next, create an .env.local file by running the command below which copies the conten...
Content
In your terminal clone the project and install dependencies:
git clone https://github.com/honojs/examples
cd examples
npm i
cd stytch-authNext, create an .env.local file by running the command below which copies the contents of .env.template.
cp .env.template .env.localOpen .env.local in the text editor of your choice, and set the environment variables using the public_token found on Project Settings.
# This is what a completed .env.local file will look like
VITE_STYTCH_PUBLIC_TOKEN=public-token-test-abc123-abcde-1234-0987-0000-abcd1234Create a .dev.vars file by running the command below which copies the contents of .dev.vars.template
cp .dev.vars.template .dev.vars