Skip to content

Commit

Permalink
refactor(CLI Onboarding): Use "Starter" not "Empty" for templates
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrzesik committed May 24, 2021
1 parent 716b312 commit 2984adb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli/interactive-setup/service.js
Expand Up @@ -16,14 +16,14 @@ const { downloadTemplateFromRepo } = require('../../utils/downloadTemplateFromRe
const isValidServiceName = RegExp.prototype.test.bind(/^[a-zA-Z][a-zA-Z0-9-]{0,100}$/);

const initializeProjectChoices = [
{ name: 'AWS - Node.js - Empty', value: 'aws-node' },
{ name: 'AWS - Node.js - Starter', value: 'aws-node' },
{ name: 'AWS - Node.js - REST API', value: 'aws-node-rest-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 - Empty', value: 'aws-python' },
{ name: 'AWS - Python - Starter', value: 'aws-python' },
{ name: 'AWS - Python - REST API', value: 'aws-python-rest-api' },
{ name: 'AWS - Python - Scheduled Task', value: 'aws-python-scheduled-cron' },
{ name: 'AWS - Python - SQS Worker', value: 'aws-python-sqs-worker' },
Expand Down

0 comments on commit 2984adb

Please sign in to comment.