Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/embesozzi/oidc-demoapp-vuejs
Vuejs OpenID Connect demo application
https://github.com/embesozzi/oidc-demoapp-vuejs
oauth2 oidc oidc-client vue-router vuejs vuex
Last synced: about 2 months ago
JSON representation
Vuejs OpenID Connect demo application
- Host: GitHub
- URL: https://github.com/embesozzi/oidc-demoapp-vuejs
- Owner: embesozzi
- Created: 2020-04-15T20:17:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T03:31:35.000Z (about 2 years ago)
- Last Synced: 2023-03-06T14:33:48.392Z (almost 2 years ago)
- Topics: oauth2, oidc, oidc-client, vue-router, vuejs, vuex
- Language: Vue
- Homepage:
- Size: 5.47 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Vuejs OIDC Demo
Vuejs OpenID Connect demo application using library [oidc-client](https://github.com/IdentityModel/oidc-client-js). Authentication flow data is handled by Vuex.Support:
* OpenID Connect Authentication (Auth Code + PCKE)
* Token negotiation
* OpenID Connect Endsession
* OAuth API Call## Run
### Run locally
#### Clone repository
```
git clone [email protected]:https://github.com/embesozzi/oidc-demoapp-vuejs.git
```#### Configure
- Create and configure env file base on the env.template
#### Execute
```
npm run serve
```- You can access to the UI on http://hostname:8080/
### Run as Docker
```
docker run -d \
--name oidc-demoapp-vuejs \
-p xxxx:80 \
-v $(pwd)/portal/config.js:/usr/share/nginx/html/config.js \
embesozzi/oidc-demoapp-vuejs:latest
```