From 30bace1579bacb2886d8c8438d5f44b23820121b Mon Sep 17 00:00:00 2001 From: Matt Davidson Date: Thu, 16 Jul 2026 13:10:34 -0700 Subject: [PATCH] Rename to sso-standalone-example Match the new repo name (github.com/workos/sso-standalone-example): - package.json/package-lock.json name, plus repository and author fields - README: include Admin Portal in the title, add clone step to setup --- README.md | 4 +++- package-lock.json | 4 ++-- package.json | 7 ++++++- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 059fd0a..8fad2f1 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# WorkOS standalone SSO + Directory Sync example (Node) +# WorkOS standalone SSO + Directory Sync + Admin Portal example (Node) An example [Express](https://expressjs.com) + TypeScript app demonstrating **standalone Single Sign-On**, **Directory Sync**, and the **Admin Portal** with the [WorkOS Node SDK](https://github.com/workos/workos-node) — wired into a session the app owns, without AuthKit. @@ -35,6 +35,8 @@ Do all of this in your **Staging** environment — it's free, and it includes te ## Configure and run ```sh +git clone https://github.com/workos/sso-standalone-example.git +cd sso-standalone-example cp .env.example .env # then fill in the values npm install npm run dev diff --git a/package-lock.json b/package-lock.json index dc6b99a..355ea55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "node-enterprise-example", + "name": "sso-standalone-example", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "node-enterprise-example", + "name": "sso-standalone-example", "version": "1.0.0", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 78359ae..3c690d7 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,14 @@ { - "name": "node-enterprise-example", + "name": "sso-standalone-example", "version": "1.0.0", "private": true, "description": "Example Express + TypeScript app for WorkOS standalone SSO, Directory Sync, and the Admin Portal", "license": "MIT", + "author": "WorkOS", + "repository": { + "type": "git", + "url": "git+https://github.com/workos/sso-standalone-example.git" + }, "type": "module", "scripts": { "dev": "tsx watch src/server.ts",