Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
8e36b7a
{Site} Add quickstart command and ARM template for Site + Config depl…
akanksha020901 Feb 10, 2026
8c5a364
{Site} Update help text for config-name argument in quickstart command
akanksha020901 Feb 10, 2026
03b58cd
{Site} Add location argument to quickstart command for deployment
akanksha020901 Feb 10, 2026
ca47836
{Site} Add AAZResourceLocationArg import for quickstart command
akanksha020901 Feb 10, 2026
5fa677c
{Site} Fix formatting in quickstart command argument definitions
akanksha020901 Feb 10, 2026
b906a47
{Site} Add argument formatting for site name in quickstart command
akanksha020901 Feb 11, 2026
1f3ca3e
Apply suggestion from @Copilot
akanksha020901 Feb 11, 2026
aac1e8b
Apply suggestion from @Copilot
akanksha020901 Feb 11, 2026
819a00a
Apply suggestion from @Copilot
akanksha020901 Feb 11, 2026
eb08a54
Merge branch 'developer/akanksha/site-config-cli' of https://github.c…
akanksha020901 Feb 11, 2026
1f3e672
{Site} Add resourceGroupName parameter with default value in main.json
akanksha020901 Feb 16, 2026
63d2ba2
{Site} Make resource group argument required in Quickstart command
akanksha020901 Feb 16, 2026
e199fc3
{Site} Enhance quickstart deployment with error suppression and succe…
akanksha020901 Feb 17, 2026
c76d5fe
{Site} Enhance error handling and messaging in quickstart deployment
akanksha020901 Feb 17, 2026
a23a275
{Site} Implement quickstart deployment enhancements with resource gro…
akanksha020901 Feb 19, 2026
ac97fe9
Refactor quickstart command help text and clean up whitespace in _qui…
akanksha020901 Feb 19, 2026
c4cfa7a
{Site} Update quickstart command examples to use correct configuratio…
akanksha020901 Feb 19, 2026
48c4586
{Site} Fix quickstart command example to use correct configuration ar…
akanksha020901 Feb 19, 2026
5e75a10
{Site} Fix quickstart command example to use correct shorthand for re…
akanksha020901 Feb 19, 2026
4513703
Refactor deployment output handling in quickstart command to improve …
akanksha020901 Mar 3, 2026
b6bb095
Fix formatting issues in _pick_failed_ops and _pick_succeeded_ids fun…
akanksha020901 Mar 5, 2026
3525f0c
Refactor quickstart command to enhance error handling and improve dep…
akanksha020901 Mar 6, 2026
4a62196
Add ARM template handling and configuration defaults to quickstart co…
akanksha020901 Mar 9, 2026
eb22336
feat: configuration creation in using 'az site quickstart' will now c…
guneet-xyz Mar 18, 2026
b0eafab
added config-type parameter to quickstart command for resource provis…
akanksha020901 Mar 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/site/azext_site/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@
# pylint: disable=too-many-lines

from knack.help_files import helps # pylint: disable=unused-import

helps['site quickstart'] = """
type: command
short-summary: Quickstart deploy Site + Config + ConfigRef using an internal ARM template.
examples:
- name: Resource group scope
text: az site quickstart --name MySite01 --configuration defaults -g MyRG
"""
1 change: 1 addition & 0 deletions src/site/azext_site/aaz/latest/site/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
from ._list import *
from ._show import *
from ._update import *
from ._quickstart import *
Loading
Loading