mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
Some checks failed
Runs E2E API Tests / build (20.x) (push) Has been cancelled
Runs E2E API Tests / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (20.x) (push) Has been cancelled
Lint & build / lint_and_build (22.x) (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
Updates `examples/demo` to Next.js 15 and adds Next.js 15 support to `packages/stack`. The other packages and apps are still running on Next.js 14 to ensure compatibility.
13 lines
917 B
Bash
13 lines
917 B
Bash
# Basic
|
|
NEXT_PUBLIC_STACK_URL=# enter your stack endpoint here, For local development: http://localhost:8102 (no trailing slash)
|
|
NEXT_PUBLIC_STACK_PROJECT_ID=internal
|
|
NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY=# enter your Stack publishable client key here. For local development, just enter a random string, then run `pnpm prisma migrate reset`
|
|
STACK_SECRET_SERVER_KEY=# enter your Stack secret client key here. For local development, do the same as above
|
|
|
|
# Webhooks
|
|
NEXT_PUBLIC_STACK_SVIX_SERVER_URL=# For prod, leave it empty. For local development, use `http://localhost:8113`
|
|
|
|
# Misc, optional
|
|
NEXT_PUBLIC_STACK_HEAD_TAGS=[{ "tagName": "script", "attributes": {}, "innerHTML": "// insert head tags here" }]
|
|
STACK_DEVELOPMENT_TRANSLATION_LOCALE=# enter the locale to use for the translation provider here, for example: de-DE. Only works during development, not in production. Optional, by default don't translate
|