This commit is contained in:
Elio Bischof
2025-06-26 11:06:38 +02:00
parent 120463be41
commit eb2581a9b9
2 changed files with 3 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ pnpm dev:local
Log in at https://127.0.0.1.sslip.io/ui/v2/login/loginname and use the following credentials:
**Loginname**: *zitadel-admin@zitadel.127.0.0.1.sslip.io*
**Password**: *Password1!*.
**Password**: _Password1!_.
The login app live-reloads on changes, so you can start developing right away.
@@ -92,7 +92,7 @@ NODE_ENV=test pnpm dev
Log in at https://127.0.0.1.sslip.io/ui/v2/login/loginname and use the following credentials:
**Loginname**: *zitadel-admin@zitadel.127.0.0.1.sslip.io*
**Password**: *Password1!*.
**Password**: _Password1!_.
The login app live-reloads on changes, so you can start developing right away.

View File

@@ -1,5 +1,5 @@
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({token: process.env.ZITADEL_SERVICE_USER_TOKEN}, { status: 200 });
return NextResponse.json({}, { status: 200 });
}