-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
enhancementNew feature or requestNew feature or request
Description
This would basically mean replacing:
SomeCommand.flags = {
projectId: flags.string({
char: 'p',
description: 'Forest project ID',
required: true,
})
};
with
SomeCommand.flags = {
projectId: flags.string({
char: 'p',
description: 'Forest project ID',
required: true,
env: 'FOREST_PROJECT_ID'
})
};
Usually, in the scope of one code project where the toolbelt is used, there's also only one Forest project that is tied to it
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request