I'm trying to follow the quick guide, I've done these steps:
serverless create -u https://github.com/adieuadieu/serverless-chrome/tree/master/examples/serverless-framework/awsexport AWS_PROFILE=serverlessnpm run deployHowever at point 3, I'm not in the right folder am I?
If I cd aws and the run npm run deploy I get an error:
Serverless Error ---------------------------------------
Serverless plugin "serverless-plugin-chrome" not found. Make sure it's installed and listed in the "plugins" section of your serverless config file.
I must be doing something wrong?
OK I was missing npm install, so I think the full steps are:
serverless create -u https://github.com/adieuadieu/serverless-chrome/tree/master/examples/serverless-framework/awscd awsnpm installexport AWS_PROFILE=serverlessnpm run deploy
Most helpful comment
OK I was missing npm install, so I think the full steps are:
serverless create -u https://github.com/adieuadieu/serverless-chrome/tree/master/examples/serverless-framework/awscd awsnpm installexport AWS_PROFILE=serverlessnpm run deploy