Skip to content

Commit 2984adb

Browse files
committed
refactor(CLI Onboarding): Use "Starter" not "Empty" for templates
1 parent 716b312 commit 2984adb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/cli/interactive-setup/service.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ const { downloadTemplateFromRepo } = require('../../utils/downloadTemplateFromRe
1616
const isValidServiceName = RegExp.prototype.test.bind(/^[a-zA-Z][a-zA-Z0-9-]{0,100}$/);
1717

1818
const initializeProjectChoices = [
19-
{ name: 'AWS - Node.js - Empty', value: 'aws-node' },
19+
{ name: 'AWS - Node.js - Starter', value: 'aws-node' },
2020
{ name: 'AWS - Node.js - REST API', value: 'aws-node-rest-api' },
2121
{ name: 'AWS - Node.js - Scheduled Task', value: 'aws-node-scheduled-cron' },
2222
{ name: 'AWS - Node.js - SQS Worker', value: 'aws-node-sqs-worker' },
2323
{ name: 'AWS - Node.js - Express API', value: 'aws-node-express-api' },
2424
{ name: 'AWS - Node.js - Express API with DynamoDB', value: 'aws-node-express-dynamodb-api' },
2525

26-
{ name: 'AWS - Python - Empty', value: 'aws-python' },
26+
{ name: 'AWS - Python - Starter', value: 'aws-python' },
2727
{ name: 'AWS - Python - REST API', value: 'aws-python-rest-api' },
2828
{ name: 'AWS - Python - Scheduled Task', value: 'aws-python-scheduled-cron' },
2929
{ name: 'AWS - Python - SQS Worker', value: 'aws-python-sqs-worker' },

0 commit comments

Comments
 (0)