Skip to content

bmgandre/angular-oidc-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

anguar-oidc-example

SPA authentication using a node-oidc-provider (OpenID Connect)

Build Status

This repository contains both Angular client and the node-oidc-provider.

Angular client

Build

cd client
npm install
export PATH=$(pwd)/node_modules/.bin:$PATH
ng build

Run

cd client
npm install
export PATH=$(pwd)/node_modules/.bin:$PATH
ng serve

OpenID Provider (node-oidc-provider)

Build

cd openid-server
npm install
export PATH=$(pwd)/node_modules/.bin:$PATH
npm run build

Run

cd openid-server
npm install
export PATH=$(pwd)/node_modules/.bin:$PATH
npm run start