The seat registration system behind the WorkWell Cafe.
- node.js 6.10 (to match AWS Lambda)
- AWS credentials configured in your shell
- Auth0 config variables in your shell
export AUTH0_CLIENT_ID='REPLACE_ME';
export AUTH0_CLIENT_SECRET='REPLACE_ME';
export AUTH0_DOMAIN='workwellcafe.auth0.com';
npm install serverless -g # If you don't have it installed globally
npm install
node index.js
serverless deploy
Maintainer: Jonathan Keebler