Python version: 3.6.8
For Development env: Node version: v14.16.1 NPM version: 6.14.12
Note: If you see errors from "npm install" command then run the following command and repeate "npm install"
# npm install --unsafe-perm [email protected]
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
```
$ NODE_ENV=production grommet pack
```
- Start the server in production mode:
```
$ npm start
```
- Test and run linters:
```
$ npm test
```
=======