File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -1408,9 +1408,24 @@ def deploy_help():
1408
1408
)
1409
1409
@server_args
1410
1410
@click .option ("--app_name" , "-a" )
1411
- @click .option ("--repository" , "-r" , required = True )
1412
- @click .option ("--branch" , "-b" , default = "main" )
1413
- @click .option ("--subdirectory" , "-d" , default = "/" )
1411
+ @click .option (
1412
+ "--repository" ,
1413
+ "-r" ,
1414
+ required = True ,
1415
+ help = "Repository URL to deploy, e.g. https://github.com/username/repository. Only https URLs are supported." ,
1416
+ )
1417
+ @click .option (
1418
+ "--branch" ,
1419
+ "-b" ,
1420
+ default = "main" ,
1421
+ help = "Name of the branch to deploy. Connect will automatically deploy updates when commits are pushed to the branch." ,
1422
+ )
1423
+ @click .option (
1424
+ "--subdirectory" ,
1425
+ "-d" ,
1426
+ default = "/" ,
1427
+ help = "Directory within the repository to deploy. The directory must contain a manifest.json file." ,
1428
+ )
1414
1429
@click .option ("--title" , "-t" , help = "Title of the content (default is the same as the filename)." )
1415
1430
@click .option (
1416
1431
"--environment" ,
You can’t perform that action at this time.
0 commit comments