You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Flask's cli support using FLASK_COMMAND_OPTION environment variables to auto-populate cli arguments/options. (here)
For me, I have to type -d [directory] every time and an option to just use envvar FLASK_DB_RUN_DIRECTORY seems so much better.
Additionally, since -d [directory] is an option for all cli, this can be moved to an option for db group to allow flexibility of flask db -d [directory] [command].
Describe the solution you'd like
Add support for click's auto_envvar_prefix.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Flask's cli support using
FLASK_COMMAND_OPTION
environment variables to auto-populate cli arguments/options. (here)For me, I have to type
-d [directory]
every time and an option to just use envvarFLASK_DB_RUN_DIRECTORY
seems so much better.Additionally, since
-d [directory]
is an option for all cli, this can be moved to an option fordb
group to allow flexibility offlask db -d [directory] [command]
.Describe the solution you'd like
Add support for click's auto_envvar_prefix.
The text was updated successfully, but these errors were encountered: