Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OIDC Spa Example #11

Merged
merged 3 commits into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/angular.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ on:

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -50,7 +50,7 @@ jobs:
working-directory: ./frameworks/angular

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
4 changes: 2 additions & 2 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ on:

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -50,7 +50,7 @@ jobs:
working-directory: ./frameworks/nextjs

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
4 changes: 2 additions & 2 deletions .github/workflows/nuxt-keycloakjs.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ on:

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -49,7 +49,7 @@ jobs:
working-directory: ./frameworks/nuxt/keycloak-js

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
4 changes: 2 additions & 2 deletions .github/workflows/nuxt-oidc.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ on:

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -49,7 +49,7 @@ jobs:
working-directory: ./frameworks/nuxt/oidc-client-ts

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
82 changes: 82 additions & 0 deletions .github/workflows/react-oidc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
name: Deploy React OIDC Example

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_REACT_PROJECT_ID }}
VERCEL_TOKEN: ${{ secrets.VERCEL_DEPLOYMENT_TOKEN }}
on:
push:
branches:
- main
paths:
- "frameworks/reactjs/oidc-client-ts/**"
pull_request:
branches:
- main
paths:
- "frameworks/reactjs/oidc-client-ts/**"

jobs:
deploy-preview:
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Install dependencies
run: npm install
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Install Vercel CLI
run: npm install -g vercel@latest

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Build Project Artifacts
run: vercel build --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs/oidc-client-ts

deploy-prod:
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Install dependencies
run: npm install
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Install Vercel CLI
run: npm install -g vercel@latest

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Build Project Artifacts
run: vercel build --prod --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs/oidc-client-ts
26 changes: 13 additions & 13 deletions .github/workflows/react.yml → .github/workflows/react-oidcspa.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy React Example
name: Deploy React OIDC Spa Example

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
@@ -9,16 +9,16 @@ on:
branches:
- main
paths:
- "frameworks/reactjs/**"
- "frameworks/reactjs/oidc-spa/**"
pull_request:
branches:
- main
paths:
- "frameworks/reactjs/**"
- "frameworks/reactjs/oidc-spa/**"

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -32,25 +32,25 @@ jobs:

- name: Install dependencies
run: npm install
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Install Vercel CLI
run: npm install -g vercel@latest

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Build Project Artifacts
run: vercel build --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -64,19 +64,19 @@ jobs:

- name: Install dependencies
run: npm install
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Install Vercel CLI
run: npm install -g vercel@latest

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Build Project Artifacts
run: vercel build --prod --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts

- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --prod --token=$VERCEL_TOKEN
working-directory: ./frameworks/reactjs
working-directory: ./frameworks/reactjs/oidc-client-ts
4 changes: 2 additions & 2 deletions .github/workflows/remix.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ on:

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -49,7 +49,7 @@ jobs:
working-directory: ./frameworks/remix

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
4 changes: 2 additions & 2 deletions .github/workflows/sveltekit.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ on:

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -49,7 +49,7 @@ jobs:
working-directory: ./frameworks/sveltekit

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
4 changes: 2 additions & 2 deletions .github/workflows/vue.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ on:

jobs:
deploy-preview:
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
@@ -49,7 +49,7 @@ jobs:
working-directory: ./frameworks/vue

deploy-prod:
if: github.event_name == 'push'
if: github.event_name == 'push' && github.repository == 'p2-inc/examples'
runs-on: ubuntu-latest

steps:
25 changes: 13 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -4,18 +4,19 @@ This is a repo for code examples showing how to integrate Keycloak with various

## Frameworks

| Framework | Code | Live | Tutorial |
| --------------------- | :----------------------------------------: | :----------------------------------------------------------: | :---------------------------------------------------------------------------: |
| React | [🧑‍💻📁](./frameworks/reactjs/) | [👩‍💻🚀](https://phasetwo-react-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-reactjs/) |
| Next.js | [🧑‍💻📁](./frameworks/nextjs/) | [👩‍💻🚀](https://phasetwo-nextjs-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-nextjs/) |
| Remix | [🧑‍💻📁](./frameworks/remix/) | [👩‍💻🚀](https://phasetwo-remix-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-management-and-sso-for-remix/) |
| Vue | [🧑‍💻📁](./frameworks/vue/) | [👩‍💻🚀](https://phasetwo-vue-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-vue/) |
| Nuxt (keycloak-js) | [🧑‍💻📁](./frameworks/nuxt/keycloak-js/) | [👩‍💻🚀](https://phasetwo-nuxt-keycloakjs-example.vercel.app/) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-nuxt/) |
| Nuxt (oidc-client-ts) | [🧑‍💻📁](./frameworks/nuxt/oidc-client-ts/) | [👩‍💻🚀](https://phasetwo-nuxt-oidc-example.vercel.app/) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-nuxt/) |
| Sveltekit | [🧑‍💻📁](./frameworks/sveltekit/) | [👩‍💻🚀](https://phasetwo-sveltekit-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-management-and-sso-for-sveltekit/) |
| Angular | [🧑‍💻📁](./frameworks/angular/) | [👩‍💻🚀](https://phasetwo-angular-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-management-and-sso-for-angular/) |
| Django | [🧑‍💻📁](./frameworks/django/) | 👩‍💻⚒️ | [👩‍🏫](https://phasetwo.io/blog/secure-django/) |
| SpringBoot + Angular | [🧑‍💻📁](./frameworks/spring-boot-keycloak/) | 👩‍💻⚒️ | [👩‍🏫](https://phasetwo.io/blog/secure-spring-boot/) |
| Framework | Code | Live | Tutorial |
| ---------------------- | :-----------------------------------------: | :----------------------------------------------------------: | :---------------------------------------------------------------------------: |
| React (oidc-client-ts) | [🧑‍💻📁](./frameworks/reactjs/oidc-client-ts) | [👩‍💻🚀](https://phasetwo-react-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-reactjs/) |
| React (oidc-spa) | [🧑‍💻📁](./frameworks/reactjs/oidc-spa) | [👩‍💻🚀](https://phasetwo-react-oidcspa-example.vercel.app/) | [👩‍🏫](#) |
| Next.js | [🧑‍💻📁](./frameworks/nextjs/) | [👩‍💻🚀](https://phasetwo-nextjs-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-nextjs/) |
| Remix | [🧑‍💻📁](./frameworks/remix/) | [👩‍💻🚀](https://phasetwo-remix-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-management-and-sso-for-remix/) |
| Vue | [🧑‍💻📁](./frameworks/vue/) | [👩‍💻🚀](https://phasetwo-vue-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-vue/) |
| Nuxt (keycloak-js) | [🧑‍💻📁](./frameworks/nuxt/keycloak-js/) | [👩‍💻🚀](https://phasetwo-nuxt-keycloakjs-example.vercel.app/) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-nuxt/) |
| Nuxt (oidc-client-ts) | [🧑‍💻📁](./frameworks/nuxt/oidc-client-ts/) | [👩‍💻🚀](https://phasetwo-nuxt-oidc-example.vercel.app/) | [👩‍🏫](https://phasetwo.io/blog/instant-user-managemenet-and-sso-for-nuxt/) |
| Sveltekit | [🧑‍💻📁](./frameworks/sveltekit/) | [👩‍💻🚀](https://phasetwo-sveltekit-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-management-and-sso-for-sveltekit/) |
| Angular | [🧑‍💻📁](./frameworks/angular/) | [👩‍💻🚀](https://phasetwo-angular-example.vercel.app) | [👩‍🏫](https://phasetwo.io/blog/instant-user-management-and-sso-for-angular/) |
| Django | [🧑‍💻📁](./frameworks/django/) | 👩‍💻⚒️ | [👩‍🏫](https://phasetwo.io/blog/secure-django/) |
| SpringBoot + Angular | [🧑‍💻📁](./frameworks/spring-boot-keycloak/) | 👩‍💻⚒️ | [👩‍🏫](https://phasetwo.io/blog/secure-spring-boot/) |

## Github Actions

37 changes: 37 additions & 0 deletions frameworks/nextjs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading