Skip to content

Commit

Permalink
feat(env): add additional context
Browse files Browse the repository at this point in the history
  • Loading branch information
crherman7 committed Dec 9, 2024
1 parent 2181924 commit 4ff643f
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions packages/app-env/.flagshipcoderc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,24 @@
"options": [
{
"flags": "--app-env-initial <value>",
"description": "Initial app runtime environment",
"required": true
"description": "Specifies the initial environment to be used when the application starts.",
"required": true,
"valueDescription": "The name of the environment, such as 'development', 'staging', or 'production'.",
"example": "--app-env-initial development"
},
{
"flags": "--app-env-hide <value>",
"description": "Environments to hide"
"flags": "--app-env-dir <value>",
"description": "Defines the directory path where environment configuration files are stored.",
"required": true,
"valueDescription": "A relative or absolute path to the environments directory.",
"example": "--app-env-dir ./config/environments"
},
{
"flags": "--app-env-dir <value>",
"description": "Environments directory"
"flags": "--app-env-hide <value>",
"description": "Specifies one or more environments to hide from selection or visibility.",
"required": false,
"valueDescription": "A comma-separated list of environment names to hide.",
"example": "--app-env-hide staging,test"
}
]
}

0 comments on commit 4ff643f

Please sign in to comment.