This the Grommet Passport application. Grommet Passport aligns Grommet's UI/UX experience with HPE's Passport login system.
To run this application, execute the following commands:
- Install NPM modules
```
$ npm install (or yarn install)
```
- Start the back-end server:
```
$ npm run dev-server
```
- Start the front-end dev server:
```
$ npm run dev
```
- Create the app distribution to be used by a back-end server
```
$ grommet pack
```
- Start the server in production mode:
```
$ npm start
```
- Test and run linters:
```
$ npm test
```