Skip to content

Commit

Permalink
feat(CLI Onboarding): Switch to httpApi-based templates
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrzesik committed Sep 14, 2021
1 parent fbdd124 commit 12216db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli/interactive-setup/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ const isValidServiceName = RegExp.prototype.test.bind(/^[a-zA-Z][a-zA-Z0-9-]{0,1

const initializeProjectChoices = [
{ name: 'AWS - Node.js - Starter', value: 'aws-node' },
{ name: 'AWS - Node.js - REST API', value: 'aws-node-rest-api' },
{ name: 'AWS - Node.js - HTTP API', value: 'aws-node-http-api' },
{ name: 'AWS - Node.js - Scheduled Task', value: 'aws-node-scheduled-cron' },
{ name: 'AWS - Node.js - SQS Worker', value: 'aws-node-sqs-worker' },
{ name: 'AWS - Node.js - Express API', value: 'aws-node-express-api' },
{ name: 'AWS - Node.js - Express API with DynamoDB', value: 'aws-node-express-dynamodb-api' },

{ name: 'AWS - Python - Starter', value: 'aws-python' },
{ name: 'AWS - Python - REST API', value: 'aws-python-rest-api' },
{ name: 'AWS - Python - HTTP API', value: 'aws-python-http-api' },
{ name: 'AWS - Python - Scheduled Task', value: 'aws-python-scheduled-cron' },
{ name: 'AWS - Python - SQS Worker', value: 'aws-python-sqs-worker' },
{ name: 'AWS - Python - Flask API', value: 'aws-python-flask-api' },
Expand Down

0 comments on commit 12216db

Please sign in to comment.