npm install Development --- 1. Create your environment by duplicating and existing config file and save in the ./env directory 2. Update the package.json file with your new environment by following the existing naming convention ``` { "scripts": { "info:{env}": "sls info --verbose --stage {env} --region us-west-2 | node tools/process-output.js ", "deploy:{env}": "npm run build && sls deploy --stage {env} --region us-west-2 && npm run info:{env}" } } ``` `info:{env}` will save the serverless outputs to the aws-connect-vm-portal/env/env.dev directory ``` # Do not modify this file, this file is automatically generated by aws-connect-vm-api when deployed REACT_APP_BASE_API=https://0t60bkzozl.execute-api.us-west-2.amazonaws.com/{env} REACT_APP_API_KEY=********************************** REACT_APP_REGION={region} ``` `deploy:{env}` will run `info:dev` and deploy your serverless stack. Run `info:dev` if you only want to save the serverless output independently