uffizzi-cli 0.7.3 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -0
  3. data/config/uffizzi.rb +1 -1
  4. data/lib/uffizzi/auth_helper.rb +5 -0
  5. data/lib/uffizzi/cli/config.rb +1 -1
  6. data/lib/uffizzi/cli/connect.rb +54 -31
  7. data/lib/uffizzi/cli/disconnect.rb +1 -1
  8. data/lib/uffizzi/cli/login.rb +76 -2
  9. data/lib/uffizzi/cli/logout.rb +1 -1
  10. data/lib/uffizzi/cli/preview.rb +43 -16
  11. data/lib/uffizzi/cli/project.rb +82 -2
  12. data/lib/uffizzi/cli.rb +3 -1
  13. data/lib/uffizzi/clients/api/api_client.rb +15 -1
  14. data/lib/uffizzi/config_file.rb +14 -20
  15. data/lib/uffizzi/helpers/project_helper.rb +22 -0
  16. data/lib/uffizzi/promt.rb +21 -0
  17. data/lib/uffizzi/services/preview_service.rb +13 -25
  18. data/lib/uffizzi/services/project_service.rb +40 -0
  19. data/lib/uffizzi/version.rb +1 -1
  20. data/lib/uffizzi.rb +5 -0
  21. data/man/uffizzi +2 -2
  22. data/man/uffizzi-config +2 -2
  23. data/man/uffizzi-config.ronn +1 -1
  24. data/man/uffizzi-connect +2 -2
  25. data/man/uffizzi-connect-acr +2 -2
  26. data/man/uffizzi-connect-acr.ronn +1 -1
  27. data/man/uffizzi-connect-docker-hub +2 -2
  28. data/man/uffizzi-connect-docker-hub.ronn +1 -1
  29. data/man/uffizzi-connect-ecr +2 -2
  30. data/man/uffizzi-connect-ecr.ronn +1 -1
  31. data/man/uffizzi-connect-gcr +2 -2
  32. data/man/uffizzi-connect-gcr.ronn +1 -1
  33. data/man/uffizzi-connect-ghcr +2 -2
  34. data/man/uffizzi-connect-ghcr.ronn +1 -1
  35. data/man/uffizzi-connect.ronn +1 -1
  36. data/man/uffizzi-disconnect +2 -2
  37. data/man/uffizzi-disconnect.ronn +1 -1
  38. data/man/uffizzi-login +2 -2
  39. data/man/uffizzi-login.ronn +1 -1
  40. data/man/uffizzi-logout +2 -2
  41. data/man/uffizzi-logout.ronn +1 -1
  42. data/man/uffizzi-preview +2 -2
  43. data/man/uffizzi-preview-create +2 -2
  44. data/man/uffizzi-preview-create.ronn +1 -1
  45. data/man/uffizzi-preview-delete +2 -2
  46. data/man/uffizzi-preview-delete.ronn +1 -1
  47. data/man/uffizzi-preview-describe +2 -2
  48. data/man/uffizzi-preview-describe.ronn +1 -1
  49. data/man/uffizzi-preview-events +2 -2
  50. data/man/uffizzi-preview-events.ronn +1 -1
  51. data/man/uffizzi-preview-list +2 -2
  52. data/man/uffizzi-preview-list.ronn +1 -1
  53. data/man/uffizzi-preview-service-list +2 -2
  54. data/man/uffizzi-preview-service-list.ronn +1 -1
  55. data/man/uffizzi-preview-service-logs +2 -2
  56. data/man/uffizzi-preview-service-logs.ronn +1 -1
  57. data/man/uffizzi-preview-update +20 -12
  58. data/man/uffizzi-preview-update.ronn +6 -6
  59. data/man/uffizzi-preview.ronn +1 -1
  60. data/man/uffizzi-preview_service_logs +2 -2
  61. data/man/uffizzi-preview_service_logs.ronn +1 -1
  62. data/man/uffizzi-project +2 -2
  63. data/man/uffizzi-project-compose +2 -2
  64. data/man/uffizzi-project-compose-describe +2 -2
  65. data/man/uffizzi-project-compose-describe.ronn +1 -1
  66. data/man/uffizzi-project-compose-set +2 -2
  67. data/man/uffizzi-project-compose-set.ronn +1 -1
  68. data/man/uffizzi-project-compose-unset +2 -2
  69. data/man/uffizzi-project-compose-unset.ronn +1 -1
  70. data/man/uffizzi-project-compose.ronn +1 -1
  71. data/man/uffizzi-project-create +50 -0
  72. data/man/uffizzi-project-create.ronn +41 -0
  73. data/man/uffizzi-project-delete +32 -0
  74. data/man/uffizzi-project-delete.ronn +24 -0
  75. data/man/uffizzi-project-describe +43 -0
  76. data/man/uffizzi-project-describe.ronn +34 -0
  77. data/man/uffizzi-project-secret +2 -2
  78. data/man/uffizzi-project-secret-create +2 -2
  79. data/man/uffizzi-project-secret-create.ronn +1 -1
  80. data/man/uffizzi-project-secret-delete +2 -2
  81. data/man/uffizzi-project-secret-delete.ronn +1 -1
  82. data/man/uffizzi-project-secret-list +2 -2
  83. data/man/uffizzi-project-secret-list.ronn +1 -1
  84. data/man/uffizzi-project-secret.ronn +1 -1
  85. data/man/uffizzi-project-set-default +2 -2
  86. data/man/uffizzi-project-set-default.ronn +1 -1
  87. data/man/uffizzi-project.ronn +1 -1
  88. data/man/uffizzi.html +1 -1
  89. data/man/uffizzi.ronn +1 -1
  90. metadata +25 -22
  91. data/man/uffizzi-config.html +0 -144
  92. data/man/uffizzi-login.html +0 -113
  93. data/man/uffizzi-logout.html +0 -102
  94. data/man/uffizzi-preview-create.html +0 -128
  95. data/man/uffizzi-preview-delete.html +0 -115
  96. data/man/uffizzi-preview-describe.html +0 -116
  97. data/man/uffizzi-preview-events.html +0 -110
  98. data/man/uffizzi-preview-list.html +0 -110
  99. data/man/uffizzi-preview.html +0 -120
  100. data/man/uffizzi-preview_service_logs.html +0 -142
  101. data/man/uffizzi-project-compose-describe.html +0 -118
  102. data/man/uffizzi-project-compose-set.html +0 -149
  103. data/man/uffizzi-project-compose-unset.html +0 -116
  104. data/man/uffizzi-project-compose.html +0 -123
  105. data/man/uffizzi-project-secret-create.html +0 -110
  106. data/man/uffizzi-project-secret-delete.html +0 -110
  107. data/man/uffizzi-project-secret-list.html +0 -110
  108. data/man/uffizzi-project-secret.html +0 -119
  109. data/man/uffizzi-project-set-default.html +0 -111
  110. data/man/uffizzi-project.html +0 -128
@@ -1,6 +1,6 @@
1
1
  .\" generated with Ronn-NG/v0.9.1
2
2
  .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "UFFIZZI\-PROJECT\-SECRET\-CREATE" "" "April 2022" ""
3
+ .TH "UFFIZZI\-PROJECT\-SECRET\-CREATE" "" "May 2022" ""
4
4
  .SH "NAME"
5
5
  \fBuffizzi\-project\-secret\-create\fR \- Creates a secret from STDIN
6
6
  .SH "SYNOPSIS"
@@ -12,7 +12,7 @@ uffizzi project secret create SECRET [\-] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
12
12
  Creates a secret from STDIN
13
13
 
14
14
  For more information on the uffizzi project secret command, see:
15
- https://docs\.uffizzi\.com/cli/project
15
+ https://github\.com/UffizziCloud/uffizzi_cli
16
16
  .fi
17
17
  .SH "UFFIZZI WIDE FLAGS"
18
18
  .nf
@@ -8,7 +8,7 @@
8
8
  Creates a secret from STDIN
9
9
 
10
10
  For more information on the uffizzi project secret command, see:
11
- https://docs.uffizzi.com/cli/project
11
+ https://github.com/UffizziCloud/uffizzi_cli
12
12
 
13
13
  ## UFFIZZI WIDE FLAGS
14
14
  These flags are available to all commands: --project. Run $ uffizzi
@@ -1,6 +1,6 @@
1
1
  .\" generated with Ronn-NG/v0.9.1
2
2
  .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "UFFIZZI\-PROJECT\-SECRET\-DELETE" "" "April 2022" ""
3
+ .TH "UFFIZZI\-PROJECT\-SECRET\-DELETE" "" "May 2022" ""
4
4
  .SH "NAME"
5
5
  \fBuffizzi\-project\-secret\-delete\fR \- deletes a secret
6
6
  .SH "SYNOPSIS"
@@ -12,7 +12,7 @@ uffizzi project secret delete [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
12
12
  Deletes a secret
13
13
 
14
14
  For more information on the uffizzi project secret command, see:
15
- https://docs\.uffizzi\.com/cli/project
15
+ https://github\.com/UffizziCloud/uffizzi_cli
16
16
  .fi
17
17
  .SH "UFFIZZI WIDE FLAGS"
18
18
  .nf
@@ -8,7 +8,7 @@
8
8
  Deletes a secret
9
9
 
10
10
  For more information on the uffizzi project secret command, see:
11
- https://docs.uffizzi.com/cli/project
11
+ https://github.com/UffizziCloud/uffizzi_cli
12
12
 
13
13
  ## UFFIZZI WIDE FLAGS
14
14
  These flags are available to all commands: --project. Run $ uffizzi
@@ -1,6 +1,6 @@
1
1
  .\" generated with Ronn-NG/v0.9.1
2
2
  .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "UFFIZZI\-PROJECT\-SECRET\-LIST" "" "April 2022" ""
3
+ .TH "UFFIZZI\-PROJECT\-SECRET\-LIST" "" "May 2022" ""
4
4
  .SH "NAME"
5
5
  \fBuffizzi\-project\-secret\-list\fR \- lists metadata for all secrets in a project
6
6
  .SH "SYNOPSIS"
@@ -12,7 +12,7 @@ uffizzi project secret list [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
12
12
  Lists metadata for all secrets in a project
13
13
 
14
14
  For more information on the uffizzi project secret command, see:
15
- https://docs\.uffizzi\.com/cli/project
15
+ https://github\.com/UffizziCloud/uffizzi_cli
16
16
  .fi
17
17
  .SH "UFFIZZI WIDE FLAGS"
18
18
  .nf
@@ -8,7 +8,7 @@
8
8
  Lists metadata for all secrets in a project
9
9
 
10
10
  For more information on the uffizzi project secret command, see:
11
- https://docs.uffizzi.com/cli/project
11
+ https://github.com/UffizziCloud/uffizzi_cli
12
12
 
13
13
  ## UFFIZZI WIDE FLAGS
14
14
  These flags are available to all commands: --project. Run $ uffizzi
@@ -9,7 +9,7 @@
9
9
  be viewed or edited.
10
10
 
11
11
  For more information on secrets, see:
12
- https://docs.uffizzi.com/cli/secret
12
+ https://github.com/UffizziCloud/uffizzi_cli
13
13
 
14
14
  ## UFFIZZI WIDE FLAGS
15
15
  These flags are available to all commands: --project. Run $ uffizzi
@@ -1,6 +1,6 @@
1
1
  .\" generated with Ronn-NG/v0.9.1
2
2
  .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "UFFIZZI\-PROJECT\-SET\-DEFAULT" "" "April 2022" ""
3
+ .TH "UFFIZZI\-PROJECT\-SET\-DEFAULT" "" "May 2022" ""
4
4
  .SH "NAME"
5
5
  \fBuffizzi\-project\-set\-default\fR \- set the default project for the active account
6
6
  .SH "SYNOPSIS"
@@ -17,7 +17,7 @@ This command can fail for the following reasons:
17
17
  \- There is no project with the given project slug
18
18
 
19
19
  For more information on Uffizzi projects, see:
20
- https://docs\.uffizzi\.com/cli
20
+ https://github\.com/UffizziCloud/uffizzi_cli
21
21
  .fi
22
22
  .SH "UFFIZZI WIDE FLAGS"
23
23
  .nf
@@ -13,7 +13,7 @@ uffizzi-project-set-default - set the default project for the active account
13
13
  - There is no project with the given project slug
14
14
 
15
15
  For more information on Uffizzi projects, see:
16
- https://docs.uffizzi.com/cli
16
+ https://github.com/UffizziCloud/uffizzi_cli
17
17
 
18
18
  ## UFFIZZI WIDE FLAGS
19
19
  These flags are available to all commands: --project. Run $ uffizzi
@@ -8,7 +8,7 @@
8
8
  Manage Uffizzi projects
9
9
 
10
10
  For more information on Uffizzi projects, see:
11
- https://docs.uffizzi.com/cli/project
11
+ https://github.com/UffizziCloud/uffizzi_cli
12
12
 
13
13
  ## COMMANDS
14
14
  COMMAND is one of the following:
data/man/uffizzi.html CHANGED
@@ -85,7 +85,7 @@
85
85
  interaction with Uffizzi APIs.
86
86
 
87
87
  For more information on the uffizzi CLI, see:
88
- https://docs.uffizzi.com/cli
88
+ https://github.com/UffizziCloud/uffizzi_cli
89
89
  </code></pre>
90
90
 
91
91
  <h2 id="GROUP">GROUP</h2>
data/man/uffizzi.ronn CHANGED
@@ -9,7 +9,7 @@ uffizzi - manage Uffizzi resources
9
9
  interaction with Uffizzi APIs.
10
10
 
11
11
  For more information on the uffizzi CLI, see:
12
- https://docs.uffizzi.com/cli
12
+ https://github.com/UffizziCloud/uffizzi_cli
13
13
 
14
14
  ## GROUP
15
15
  GROUP is one of the following:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uffizzi-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.3
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Thurman
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-05-13 00:00:00.000000000 Z
12
+ date: 2022-06-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: awesome_print
@@ -39,6 +39,20 @@ dependencies:
39
39
  - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: tty-prompt
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
42
56
  - !ruby/object:Gem::Dependency
43
57
  name: tty-spinner
44
58
  requirement: !ruby/object:Gem::Requirement
@@ -323,16 +337,18 @@ files:
323
337
  - lib/uffizzi/config_file.rb
324
338
  - lib/uffizzi/date_helper.rb
325
339
  - lib/uffizzi/error.rb
340
+ - lib/uffizzi/helpers/project_helper.rb
341
+ - lib/uffizzi/promt.rb
326
342
  - lib/uffizzi/response_helper.rb
327
343
  - lib/uffizzi/services/command_service.rb
328
344
  - lib/uffizzi/services/compose_file_service.rb
329
345
  - lib/uffizzi/services/env_variables_service.rb
330
346
  - lib/uffizzi/services/preview_service.rb
347
+ - lib/uffizzi/services/project_service.rb
331
348
  - lib/uffizzi/shell.rb
332
349
  - lib/uffizzi/version.rb
333
350
  - man/uffizzi
334
351
  - man/uffizzi-config
335
- - man/uffizzi-config.html
336
352
  - man/uffizzi-config.ronn
337
353
  - man/uffizzi-connect
338
354
  - man/uffizzi-connect-acr
@@ -349,26 +365,19 @@ files:
349
365
  - man/uffizzi-disconnect
350
366
  - man/uffizzi-disconnect.ronn
351
367
  - man/uffizzi-login
352
- - man/uffizzi-login.html
353
368
  - man/uffizzi-login.ronn
354
369
  - man/uffizzi-logout
355
- - man/uffizzi-logout.html
356
370
  - man/uffizzi-logout.ronn
357
371
  - man/uffizzi-preview
358
372
  - man/uffizzi-preview-create
359
- - man/uffizzi-preview-create.html
360
373
  - man/uffizzi-preview-create.ronn
361
374
  - man/uffizzi-preview-delete
362
- - man/uffizzi-preview-delete.html
363
375
  - man/uffizzi-preview-delete.ronn
364
376
  - man/uffizzi-preview-describe
365
- - man/uffizzi-preview-describe.html
366
377
  - man/uffizzi-preview-describe.ronn
367
378
  - man/uffizzi-preview-events
368
- - man/uffizzi-preview-events.html
369
379
  - man/uffizzi-preview-events.ronn
370
380
  - man/uffizzi-preview-list
371
- - man/uffizzi-preview-list.html
372
381
  - man/uffizzi-preview-list.ronn
373
382
  - man/uffizzi-preview-service-list
374
383
  - man/uffizzi-preview-service-list.ronn
@@ -376,40 +385,34 @@ files:
376
385
  - man/uffizzi-preview-service-logs.ronn
377
386
  - man/uffizzi-preview-update
378
387
  - man/uffizzi-preview-update.ronn
379
- - man/uffizzi-preview.html
380
388
  - man/uffizzi-preview.ronn
381
389
  - man/uffizzi-preview_service_logs
382
- - man/uffizzi-preview_service_logs.html
383
390
  - man/uffizzi-preview_service_logs.ronn
384
391
  - man/uffizzi-project
385
392
  - man/uffizzi-project-compose
386
393
  - man/uffizzi-project-compose-describe
387
- - man/uffizzi-project-compose-describe.html
388
394
  - man/uffizzi-project-compose-describe.ronn
389
395
  - man/uffizzi-project-compose-set
390
- - man/uffizzi-project-compose-set.html
391
396
  - man/uffizzi-project-compose-set.ronn
392
397
  - man/uffizzi-project-compose-unset
393
- - man/uffizzi-project-compose-unset.html
394
398
  - man/uffizzi-project-compose-unset.ronn
395
- - man/uffizzi-project-compose.html
396
399
  - man/uffizzi-project-compose.ronn
400
+ - man/uffizzi-project-create
401
+ - man/uffizzi-project-create.ronn
402
+ - man/uffizzi-project-delete
403
+ - man/uffizzi-project-delete.ronn
404
+ - man/uffizzi-project-describe
405
+ - man/uffizzi-project-describe.ronn
397
406
  - man/uffizzi-project-secret
398
407
  - man/uffizzi-project-secret-create
399
- - man/uffizzi-project-secret-create.html
400
408
  - man/uffizzi-project-secret-create.ronn
401
409
  - man/uffizzi-project-secret-delete
402
- - man/uffizzi-project-secret-delete.html
403
410
  - man/uffizzi-project-secret-delete.ronn
404
411
  - man/uffizzi-project-secret-list
405
- - man/uffizzi-project-secret-list.html
406
412
  - man/uffizzi-project-secret-list.ronn
407
- - man/uffizzi-project-secret.html
408
413
  - man/uffizzi-project-secret.ronn
409
414
  - man/uffizzi-project-set-default
410
- - man/uffizzi-project-set-default.html
411
415
  - man/uffizzi-project-set-default.ronn
412
- - man/uffizzi-project.html
413
416
  - man/uffizzi-project.ronn
414
417
  - man/uffizzi.html
415
418
  - man/uffizzi.ronn
@@ -1,144 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta http-equiv='content-type' content='text/html;charset=utf8'>
5
- <meta name='generator' content='Ronn-NG/v0.9.1 (http://github.com/apjanke/ronn-ng/tree/0.9.1)'>
6
- <title>configure the Uffizzi command-line interface (CLI)</title>
7
- <style type='text/css' media='all'>
8
- /* style: man */
9
- body#manpage {margin:0}
10
- .mp {max-width:100ex;padding:0 9ex 1ex 4ex}
11
- .mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
12
- .mp h2 {margin:10px 0 0 0}
13
- .mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
14
- .mp h3 {margin:0 0 0 4ex}
15
- .mp dt {margin:0;clear:left}
16
- .mp dt.flush {float:left;width:8ex}
17
- .mp dd {margin:0 0 0 9ex}
18
- .mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
19
- .mp pre {margin-bottom:20px}
20
- .mp pre+h2,.mp pre+h3 {margin-top:22px}
21
- .mp h2+pre,.mp h3+pre {margin-top:5px}
22
- .mp img {display:block;margin:auto}
23
- .mp h1.man-title {display:none}
24
- .mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
25
- .mp h2 {font-size:16px;line-height:1.25}
26
- .mp h1 {font-size:20px;line-height:2}
27
- .mp {text-align:justify;background:#fff}
28
- .mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
29
- .mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
30
- .mp u {text-decoration:underline}
31
- .mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
32
- .mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
33
- .mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
34
- .mp b.man-ref {font-weight:normal;color:#434241}
35
- .mp pre {padding:0 4ex}
36
- .mp pre code {font-weight:normal;color:#434241}
37
- .mp h2+pre,h3+pre {padding-left:0}
38
- ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
39
- ol.man-decor {width:100%}
40
- ol.man-decor li.tl {text-align:left}
41
- ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
- ol.man-decor li.tr {text-align:right;float:right}
43
- </style>
44
- </head>
45
- <!--
46
- The following styles are deprecated and will be removed at some point:
47
- div#man, div#man ol.man, div#man ol.head, div#man ol.man.
48
-
49
- The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
50
- .man-navigation should be used instead.
51
- -->
52
- <body id='manpage'>
53
- <div class='mp' id='man'>
54
-
55
- <div class='man-navigation' style='display:none'>
56
- <a href="#NAME">NAME</a>
57
- <a href="#SYNOPSIS">SYNOPSIS</a>
58
- <a href="#DESCRIPTION">DESCRIPTION</a>
59
- <a href="#UFFIZZI-WIDE-FLAGS">UFFIZZI WIDE FLAGS</a>
60
- <a href="#COMMANDS">COMMANDS</a>
61
- <a href="#OPTIONS">OPTIONS</a>
62
- <a href="#EXAMPLES">EXAMPLES</a>
63
- </div>
64
-
65
- <ol class='man-decor man-head man head'>
66
- <li class='tl'>config</li>
67
- <li class='tc'></li>
68
- <li class='tr'>config</li>
69
- </ol>
70
-
71
-
72
-
73
- <h2 id="NAME">NAME</h2>
74
- <p class="man-name">
75
- <code>config</code> - <span class="man-whatis">configure the Uffizzi command-line interface (CLI)</span>
76
- </p>
77
- <h2 id="SYNOPSIS">SYNOPSIS</h2>
78
- <pre><code>uffizzi config COMMAND [UFFIZZI_WIDE_FLAG ...]
79
- </code></pre>
80
-
81
- <h2 id="DESCRIPTION">DESCRIPTION</h2>
82
- <pre><code>The uffizzi config command lets you configure this command-line application.
83
- If COMMAND is not specified, uffizzi config launches an interactive set up
84
- guide.
85
-
86
- For more information on configuration options, see:
87
- https://docs.uffizzi.com/references/cli
88
- </code></pre>
89
-
90
- <h2 id="UFFIZZI-WIDE-FLAGS">UFFIZZI WIDE FLAGS</h2>
91
- <pre><code>These flags are available to all commands: --project. Run $ uffizzi
92
- help for details.
93
- </code></pre>
94
-
95
- <h2 id="COMMANDS">COMMANDS</h2>
96
- <pre><code>COMMAND is one of the following:
97
-
98
- get-value OPTION
99
- Displays the value of the specified option.
100
-
101
- list
102
- Lists all options and their values from the config file.
103
-
104
- set OPTION VALUE
105
- Sets the value of the specified option.
106
-
107
- unset OPTION
108
- Deletes the value of the specified option.
109
- </code></pre>
110
-
111
- <h2 id="OPTIONS">OPTIONS</h2>
112
- <pre><code> OPTION is one of the following:
113
-
114
- server
115
- The server of the Uffizzi API service you want to access. Defaults to
116
- app.uffizzi.com.
117
-
118
- name
119
- Your name.
120
-
121
- project
122
- The current active project. This project is used as the default unless
123
- --project is pass as an argument.
124
- </code></pre>
125
-
126
- <h2 id="EXAMPLES">EXAMPLES</h2>
127
- <pre><code>To list the uffizzi configuration options, run:
128
-
129
- $ uffizzi config list
130
-
131
- To set a new current active project for uffizzi, run:
132
-
133
- $ uffizzi config set project my-project
134
- </code></pre>
135
-
136
- <ol class='man-decor man-foot man foot'>
137
- <li class='tl'></li>
138
- <li class='tc'>April 2022</li>
139
- <li class='tr'>config</li>
140
- </ol>
141
-
142
- </div>
143
- </body>
144
- </html>
@@ -1,113 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta http-equiv='content-type' content='text/html;charset=utf8'>
5
- <meta name='generator' content='Ronn-NG/v0.9.1 (http://github.com/apjanke/ronn-ng/tree/0.9.1)'>
6
- <title>uffizzi-login</title>
7
- <style type='text/css' media='all'>
8
- /* style: man */
9
- body#manpage {margin:0}
10
- .mp {max-width:100ex;padding:0 9ex 1ex 4ex}
11
- .mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
12
- .mp h2 {margin:10px 0 0 0}
13
- .mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
14
- .mp h3 {margin:0 0 0 4ex}
15
- .mp dt {margin:0;clear:left}
16
- .mp dt.flush {float:left;width:8ex}
17
- .mp dd {margin:0 0 0 9ex}
18
- .mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
19
- .mp pre {margin-bottom:20px}
20
- .mp pre+h2,.mp pre+h3 {margin-top:22px}
21
- .mp h2+pre,.mp h3+pre {margin-top:5px}
22
- .mp img {display:block;margin:auto}
23
- .mp h1.man-title {display:none}
24
- .mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
25
- .mp h2 {font-size:16px;line-height:1.25}
26
- .mp h1 {font-size:20px;line-height:2}
27
- .mp {text-align:justify;background:#fff}
28
- .mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
29
- .mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
30
- .mp u {text-decoration:underline}
31
- .mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
32
- .mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
33
- .mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
34
- .mp b.man-ref {font-weight:normal;color:#434241}
35
- .mp pre {padding:0 4ex}
36
- .mp pre code {font-weight:normal;color:#434241}
37
- .mp h2+pre,h3+pre {padding-left:0}
38
- ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
39
- ol.man-decor {width:100%}
40
- ol.man-decor li.tl {text-align:left}
41
- ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
- ol.man-decor li.tr {text-align:right;float:right}
43
- </style>
44
- </head>
45
- <!--
46
- The following styles are deprecated and will be removed at some point:
47
- div#man, div#man ol.man, div#man ol.head, div#man ol.man.
48
-
49
- The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
50
- .man-navigation should be used instead.
51
- -->
52
- <body id='manpage'>
53
- <div class='mp' id='man'>
54
-
55
- <div class='man-navigation' style='display:none'>
56
- <a href="#NAME">NAME</a>
57
- <a href="#NAME">NAME</a>
58
- <a href="#SYNOPSIS">SYNOPSIS</a>
59
- <a href="#DESCRIPTION">DESCRIPTION</a>
60
- <a href="#UFFIZZI-WIDE-FLAGS">UFFIZZI WIDE FLAGS</a>
61
- <a href="#EXAMPLES">EXAMPLES</a>
62
- </div>
63
-
64
- <ol class='man-decor man-head man head'>
65
- <li class='tl'>uffizzi-login</li>
66
- <li class='tc'></li>
67
- <li class='tr'>uffizzi-login</li>
68
- </ol>
69
-
70
-
71
- <h2 id="NAME">NAME</h2>
72
- <p class="man-name">
73
- <code>uffizzi-login</code>
74
- </p>
75
- <h2 id="NAME">NAME</h2>
76
- <pre><code>uffizzi login - login to Uffizzi
77
- </code></pre>
78
-
79
- <h2 id="SYNOPSIS">SYNOPSIS</h2>
80
- <pre><code>uffizzi login [UFFIZZI_WIDE_FLAG ...]
81
- </code></pre>
82
-
83
- <h2 id="DESCRIPTION">DESCRIPTION</h2>
84
- <pre><code>The uffizzi login command lets you authenticate with Uffizzi.
85
-
86
- For more information on authentication and credential types, see:
87
- https://docs.uffizzi.com/references/cli
88
- </code></pre>
89
-
90
- <h2 id="UFFIZZI-WIDE-FLAGS">UFFIZZI WIDE FLAGS</h2>
91
- <pre><code>These flags are available to all commands: --project. Run $ uffizzi
92
- help for details.
93
- </code></pre>
94
-
95
- <h2 id="EXAMPLES">EXAMPLES</h2>
96
- <pre><code>To login to the default host with the default user account, run:
97
-
98
- $ uffizzi login
99
-
100
- To login to an alternate host, run:
101
-
102
- $ uffizzi login --hostname=uffizzi.example.com
103
- </code></pre>
104
-
105
- <ol class='man-decor man-foot man foot'>
106
- <li class='tl'></li>
107
- <li class='tc'>March 2022</li>
108
- <li class='tr'>uffizzi-login</li>
109
- </ol>
110
-
111
- </div>
112
- </body>
113
- </html>
@@ -1,102 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta http-equiv='content-type' content='text/html;charset=utf8'>
5
- <meta name='generator' content='Ronn-NG/v0.9.1 (http://github.com/apjanke/ronn-ng/tree/0.9.1)'>
6
- <title>log out of a Uffizzi user account</title>
7
- <style type='text/css' media='all'>
8
- /* style: man */
9
- body#manpage {margin:0}
10
- .mp {max-width:100ex;padding:0 9ex 1ex 4ex}
11
- .mp p,.mp pre,.mp ul,.mp ol,.mp dl {margin:0 0 20px 0}
12
- .mp h2 {margin:10px 0 0 0}
13
- .mp > p,.mp > pre,.mp > ul,.mp > ol,.mp > dl {margin-left:8ex}
14
- .mp h3 {margin:0 0 0 4ex}
15
- .mp dt {margin:0;clear:left}
16
- .mp dt.flush {float:left;width:8ex}
17
- .mp dd {margin:0 0 0 9ex}
18
- .mp h1,.mp h2,.mp h3,.mp h4 {clear:left}
19
- .mp pre {margin-bottom:20px}
20
- .mp pre+h2,.mp pre+h3 {margin-top:22px}
21
- .mp h2+pre,.mp h3+pre {margin-top:5px}
22
- .mp img {display:block;margin:auto}
23
- .mp h1.man-title {display:none}
24
- .mp,.mp code,.mp pre,.mp tt,.mp kbd,.mp samp,.mp h3,.mp h4 {font-family:monospace;font-size:14px;line-height:1.42857142857143}
25
- .mp h2 {font-size:16px;line-height:1.25}
26
- .mp h1 {font-size:20px;line-height:2}
27
- .mp {text-align:justify;background:#fff}
28
- .mp,.mp code,.mp pre,.mp pre code,.mp tt,.mp kbd,.mp samp {color:#131211}
29
- .mp h1,.mp h2,.mp h3,.mp h4 {color:#030201}
30
- .mp u {text-decoration:underline}
31
- .mp code,.mp strong,.mp b {font-weight:bold;color:#131211}
32
- .mp em,.mp var {font-style:italic;color:#232221;text-decoration:none}
33
- .mp a,.mp a:link,.mp a:hover,.mp a code,.mp a pre,.mp a tt,.mp a kbd,.mp a samp {color:#0000ff}
34
- .mp b.man-ref {font-weight:normal;color:#434241}
35
- .mp pre {padding:0 4ex}
36
- .mp pre code {font-weight:normal;color:#434241}
37
- .mp h2+pre,h3+pre {padding-left:0}
38
- ol.man-decor,ol.man-decor li {margin:3px 0 10px 0;padding:0;float:left;width:33%;list-style-type:none;text-transform:uppercase;color:#999;letter-spacing:1px}
39
- ol.man-decor {width:100%}
40
- ol.man-decor li.tl {text-align:left}
41
- ol.man-decor li.tc {text-align:center;letter-spacing:4px}
42
- ol.man-decor li.tr {text-align:right;float:right}
43
- </style>
44
- </head>
45
- <!--
46
- The following styles are deprecated and will be removed at some point:
47
- div#man, div#man ol.man, div#man ol.head, div#man ol.man.
48
-
49
- The .man-page, .man-decor, .man-head, .man-foot, .man-title, and
50
- .man-navigation should be used instead.
51
- -->
52
- <body id='manpage'>
53
- <div class='mp' id='man'>
54
-
55
- <div class='man-navigation' style='display:none'>
56
- <a href="#NAME">NAME</a>
57
- <a href="#SYNOPSIS">SYNOPSIS</a>
58
- <a href="#DESCRIPTION">DESCRIPTION</a>
59
- <a href="#UFFIZZI-WIDE-FLAGS">UFFIZZI WIDE FLAGS</a>
60
- <a href="#EXAMPLES">EXAMPLES</a>
61
- </div>
62
-
63
- <ol class='man-decor man-head man head'>
64
- <li class='tl'>uffizzi-logout</li>
65
- <li class='tc'></li>
66
- <li class='tr'>uffizzi-logout</li>
67
- </ol>
68
-
69
-
70
-
71
- <h2 id="NAME">NAME</h2>
72
- <p class="man-name">
73
- <code>uffizzi-logout</code> - <span class="man-whatis">log out of a Uffizzi user account</span>
74
- </p>
75
- <h2 id="SYNOPSIS">SYNOPSIS</h2>
76
-
77
- <p><code>uffizzi logout</code></p>
78
-
79
- <h2 id="DESCRIPTION">DESCRIPTION</h2>
80
- <pre><code>The uffizzi logout command logs out of a Uffizzi user account.
81
-
82
- For more information on logout, see:
83
- https://docs.uffizzi.com/references/cli
84
- </code></pre>
85
-
86
- <h2 id="UFFIZZI-WIDE-FLAGS">UFFIZZI WIDE FLAGS</h2>
87
- <pre><code>These flags are available to all commands: --project. Run $ uffizzi
88
- help for details.
89
- </code></pre>
90
-
91
- <h2 id="EXAMPLES">EXAMPLES</h2>
92
- <p>uffizzi logout</p>
93
-
94
- <ol class='man-decor man-foot man foot'>
95
- <li class='tl'></li>
96
- <li class='tc'>March 2022</li>
97
- <li class='tr'>uffizzi-logout</li>
98
- </ol>
99
-
100
- </div>
101
- </body>
102
- </html>