CSYE 6225 WEBAPP
Install dependencies:
$ npm installStart the server:
$ npm startStart the development server:
$ npm run devTesting using Jest and supertest:
$ npm testDownload Packer plugin binaries:
$ cd packer
$ packer init build.pkr.hclFormat HCL2 configuration files to canonical format and style:
$ cd packer
$ packer fmt .Validate the syntax and configuration:
$ cd packer
$ packer validate .Create a values.pkrvars.hcl file and include this key value pair credentials_file = "C:/Users/user/Downloads/nameofgcpcredentialfile.json"
Build the packer custom image:
$ cd packer
$ packer build -var-file=values.pkrvars.hcl build.pkr.hcl