Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 668 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 668 Bytes

Grommet Passport

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:

  1. Install NPM modules
```
$ npm install (or yarn install)
```
  1. Start the back-end server:
```
$ npm run dev-server
```
  1. Start the front-end dev server:
```
$ npm run dev
```
  1. Create the app distribution to be used by a back-end server
```
$ grommet pack
```
  1. Start the server in production mode:
```
$ npm start
```
  1. Test and run linters:
```
$ npm test
```