-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Extensions POC #4409
base: main
Are you sure you want to change the base?
WIP: Extensions POC #4409
Conversation
Thanks for sharing the work here, @wbreza! Just sharing some high-level UX observations and wonders for now while I find time to parse through more details. Sharing some observations:
Sharing some wonders I have:
Overall, I think this is a really great start that will help us guide us towards productive conversations as we chat more about this today, so thanks once again for sharing. |
Do you envision different types of extensions, such as root-level command extensions, command groups with multiple commands, or extensions added to existing commands (e.g., adding an extension to 'azd up')? Additionally, can I add an extension to extend infrastructure providers? |
Yes, ultimately I envision different types of extensions. The first set of extensions would allow extension authors to create new commands that can be executed through Over time I can also see extensions providing additional functionality to customize experience within Regarding |
Azure Dev CLI Install InstructionsInstall scriptsMacOS/Linux
bash:
pwsh:
WindowsPowerShell install
MSI install
Standalone Binary
MSI
Documentationlearn.microsoft.com documentationtitle: Azure Developer CLI reference
|
This is a very early work in progress to demonstrate the full lifecycle of installing & executing
azd
extensions.POC works with a file based registry available @ https://github.com/wbreza/azd-extensions/blob/main/registry.json
azd extension list
azd extension show ai
azd extension install ai
azd -h
Extensions show up in standard azd help commands.
azd test -h
Extension help shells into extension executable
azd test --unit
Invoke extensions through azd command interface
azd extension uninstall ai