uffizzi-cli 0.3.6 → 0.4.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.
data/Gemfile.lock DELETED
@@ -1,122 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- uffizzi-cli (0.3.6)
5
- thor
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activesupport (6.1.4.1)
11
- concurrent-ruby (~> 1.0, >= 1.0.2)
12
- i18n (>= 1.6, < 2)
13
- minitest (>= 5.1)
14
- tzinfo (~> 2.0)
15
- zeitwerk (~> 2.3)
16
- addressable (2.8.0)
17
- public_suffix (>= 2.0.2, < 5.0)
18
- ast (2.4.2)
19
- bump (0.10.0)
20
- byebug (11.1.3)
21
- coderay (1.1.3)
22
- concurrent-ruby (1.1.9)
23
- crack (0.4.5)
24
- rexml
25
- factory_bot (6.2.0)
26
- activesupport (>= 5.0.0)
27
- faker (2.20.0)
28
- i18n (>= 1.8.11, < 2)
29
- hashdiff (1.0.1)
30
- i18n (1.8.11)
31
- concurrent-ruby (~> 1.0)
32
- kramdown (2.3.1)
33
- rexml
34
- method_source (1.0.0)
35
- minitest (5.14.4)
36
- minitest-power_assert (0.3.1)
37
- minitest
38
- power_assert (>= 1.1)
39
- mocha (1.13.0)
40
- mustache (0.99.8)
41
- nokogiri (1.13.1-x86_64-linux)
42
- racc (~> 1.4)
43
- open3 (0.1.1)
44
- parallel (1.21.0)
45
- parser (3.0.2.0)
46
- ast (~> 2.4.1)
47
- power_assert (2.0.1)
48
- pry (0.13.1)
49
- coderay (~> 1.1)
50
- method_source (~> 1.0)
51
- pry-byebug (3.9.0)
52
- byebug (~> 11.0)
53
- pry (~> 0.13.0)
54
- pry-inline (1.0.7)
55
- pry (> 0.10.0)
56
- unicode (~> 0.4.4)
57
- public_suffix (4.0.6)
58
- racc (1.6.0)
59
- rainbow (3.0.0)
60
- rake (13.0.6)
61
- regexp_parser (2.1.1)
62
- rexml (3.2.5)
63
- ronn-ng (0.9.1)
64
- kramdown (~> 2.1)
65
- mustache (~> 0.7, >= 0.7.0)
66
- nokogiri (~> 1.9, >= 1.9.0)
67
- rubocop (1.22.3)
68
- parallel (~> 1.10)
69
- parser (>= 3.0.0.0)
70
- rainbow (>= 2.2.2, < 4.0)
71
- regexp_parser (>= 1.8, < 3.0)
72
- rexml
73
- rubocop-ast (>= 1.12.0, < 2.0)
74
- ruby-progressbar (~> 1.7)
75
- unicode-display_width (>= 1.4.0, < 3.0)
76
- rubocop-ast (1.13.0)
77
- parser (>= 3.0.1.1)
78
- rubocop-minitest (0.15.2)
79
- rubocop (>= 0.90, < 2.0)
80
- rubocop-rake (0.6.0)
81
- rubocop (~> 1.0)
82
- ruby-progressbar (1.11.0)
83
- thor (1.2.1)
84
- tty-cursor (0.7.1)
85
- tty-spinner (0.9.3)
86
- tty-cursor (~> 0.7)
87
- tzinfo (2.0.4)
88
- concurrent-ruby (~> 1.0)
89
- unicode (0.4.4.4)
90
- unicode-display_width (2.1.0)
91
- webmock (3.14.0)
92
- addressable (>= 2.8.0)
93
- crack (>= 0.3.2)
94
- hashdiff (>= 0.4.0, < 2.0.0)
95
- zeitwerk (2.5.1)
96
-
97
- PLATFORMS
98
- x86_64-linux-musl
99
-
100
- DEPENDENCIES
101
- bump
102
- bundler (~> 2.2)
103
- byebug
104
- factory_bot
105
- faker
106
- minitest
107
- minitest-power_assert
108
- mocha
109
- open3
110
- pry-byebug
111
- pry-inline
112
- rake
113
- ronn-ng
114
- rubocop
115
- rubocop-minitest
116
- rubocop-rake
117
- tty-spinner
118
- uffizzi-cli!
119
- webmock
120
-
121
- BUNDLED WITH
122
- 2.2.22
data/Makefile DELETED
@@ -1,31 +0,0 @@
1
- .PHONY: release release_patch release_minor release_major
2
-
3
- NEXT_PATCH=$(shell docker-compose run --rm gem bash -c "bundle exec bump show-next patch")
4
- NEXT_MINOR=$(shell docker-compose run --rm gem bash -c "bundle exec bump show-next minor")
5
- NEXT_MAJOR=$(shell docker-compose run --rm gem bash -c "bundle exec bump show-next major")
6
-
7
- release_patch: export VERSION=${NEXT_PATCH}
8
- release_patch:
9
- make release
10
-
11
- release_minor: export VERSION=${NEXT_MINOR}
12
- release_minor:
13
- make release
14
-
15
- release_major: export VERSION=${NEXT_MAJOR}
16
- release_major:
17
- make release
18
-
19
- release:
20
- git checkout develop
21
- @echo 'Set a new version'
22
- docker-compose run --rm gem bash -c "bundle exec bump set ${VERSION}"
23
- @echo 'Update remote origin'
24
- git push origin develop
25
- git checkout main
26
- git pull origin --rebase main
27
- git merge --no-ff --no-edit develop
28
- git push origin main
29
- @echo 'Create a new tag'
30
- git tag v${VERSION}
31
- git push origin v${VERSION}
data/Rakefile DELETED
@@ -1,21 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'bundler/gem_tasks'
4
- require 'rake/testtask'
5
-
6
- Rake::TestTask.new(:test) do |t|
7
- t.libs << 'test'
8
- t.libs << 'lib'
9
- t.test_files = FileList['test/**/*_test.rb']
10
- end
11
-
12
- require 'rubocop/rake_task'
13
-
14
- RuboCop::RakeTask.new
15
-
16
- task default: [:test, :rubocop]
17
-
18
- desc 'Generate roff output files from ronn format'
19
- task :generate_docs do
20
- sh 'ronn --roff man/*.ronn'
21
- end
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require 'bundler/setup'
5
- require 'uffizzi'
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
13
-
14
- require 'irb'
15
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
data/docker-compose.yml DELETED
@@ -1,29 +0,0 @@
1
- version: "3.9"
2
-
3
- services:
4
- gem:
5
- build:
6
- context: .
7
- target: builder
8
- volumes:
9
- - ./:/gem:cached
10
- - ~/.ssh:/root/.ssh
11
- - ~/.bash_history:/root/.bash_history
12
- - bundle_cache:/bundle_cache
13
- environment:
14
- - BUNDLE_PATH=/bundle_cache
15
- - GEM_HOME=/bundle_cache
16
- - GEM_PATH=/bundle_cache
17
-
18
- bundle_cache:
19
- image: busybox
20
- volumes:
21
- - bundle_cache:/bundle_cache
22
-
23
- volumes:
24
- bundle_cache:
25
- public:
26
-
27
- networks:
28
- default:
29
- name: 'uffizzi_default_network'
data/docker-entrypoint.sh DELETED
@@ -1,20 +0,0 @@
1
- #!/bin/sh
2
-
3
- set -e # Exit immediately if anything below exits with non-zero status.
4
-
5
- if
6
- [ $UFFIZZI_USER ] &&
7
- [ $UFFIZZI_HOSTNAME ] &&
8
- [ $UFFIZZI_PASSWORD ]
9
- then
10
- uffizzi login --username "${UFFIZZI_USER}" --hostname "${UFFIZZI_HOSTNAME}"
11
- if [ $UFFIZZI_PROJECT ]
12
- then
13
- uffizzi config set project "${UFFIZZI_PROJECT}"
14
- fi
15
- else
16
- echo "Specify environment variables to login before executing Uffizzi CLI."
17
- echo "UFFIZZI_USER, UFFIZZI_HOSTNAME, UFFIZZI_PASSWORD, and optionally UFFIZZI_PROJECT"
18
- fi
19
-
20
- exec uffizzi "$@"
data/man/uffizzi-create DELETED
@@ -1,50 +0,0 @@
1
- .\" generated with Ronn-NG/v0.9.1
2
- .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "CREATE" "" "February 2022" ""
4
- .SH "NAME"
5
- \fBcreate\fR \- create a preview
6
- .SH "SYNOPSIS"
7
- .nf
8
- uffizzi preview create [COMPOSE_FILE] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
9
- .fi
10
- .SH "DESCRIPTION"
11
- .nf
12
- Creates a new preview\. If no COMPOSE_FILE is specified, the preview
13
- is created with the project\'s default compose file\.
14
-
15
- This command can fail for the following reasons:
16
- \- The project does not have a default compose file set\. Run
17
- $ uffizzi compose \-\-help for details\.
18
- \- The alternate compose file is invalid\.
19
-
20
- For more information on Uffizzi previews, see:
21
- https://docs\.uffizzi\.com/cli/preview
22
- .fi
23
- .SH "POSITIONAL ARGUMENTS"
24
- .nf
25
- [COMPOSE_FILE]
26
- An alternate compose file to the default compose\.
27
-
28
- You can pass a compose file to this command to create an ad hoc
29
- preview of an alternate compose configuration\. The file passed
30
- via this argument does not replace the default compose file for
31
- the project\. Alternate compose files share the same lifecyle as
32
- the previews they create: when the preview is deleted, the
33
- alternate compose is deleted by the Uffizzi API\.
34
- .fi
35
- .SH "UFFIZZI WIDE FLAGS"
36
- .nf
37
- These flags are available to all commands: \-\-project\. Run $ uffizzi
38
- help for details\.
39
- .fi
40
- .SH "EXAMPLES"
41
- .nf
42
- To create a preview with the project\'s default compose file, run:
43
-
44
- $ uffizzi preview create
45
-
46
- To create a preview with an alternate compose file, run:
47
-
48
- $ uffizzi preview create docker\-compose\.uffizzi\.alt\.yml
49
- .fi
50
-
@@ -1,41 +0,0 @@
1
- uffizzi preview create - create a preview
2
- ================================================================
3
-
4
- ## SYNOPSIS
5
- uffizzi preview create [COMPOSE_FILE] [UFFIZZI_WIDE_FLAG ...]
6
-
7
- ## DESCRIPTION
8
- Creates a new preview. If no COMPOSE_FILE is specified, the preview
9
- is created with the project's default compose file.
10
-
11
- This command can fail for the following reasons:
12
- - The project does not have a default compose file set. Run
13
- $ uffizzi compose --help for details.
14
- - The alternate compose file is invalid.
15
-
16
- For more information on Uffizzi previews, see:
17
- https://docs.uffizzi.com/cli/preview
18
-
19
- ## POSITIONAL ARGUMENTS
20
- [COMPOSE_FILE]
21
- An alternate compose file to the default compose.
22
-
23
- You can pass a compose file to this command to create an ad hoc
24
- preview of an alternate compose configuration. The file passed
25
- via this argument does not replace the default compose file for
26
- the project. Alternate compose files share the same lifecyle as
27
- the previews they create: when the preview is deleted, the
28
- alternate compose is deleted by the Uffizzi API.
29
-
30
- ## UFFIZZI WIDE FLAGS
31
- These flags are available to all commands: --project. Run $ uffizzi
32
- help for details.
33
-
34
- ## EXAMPLES
35
- To create a preview with the project's default compose file, run:
36
-
37
- $ uffizzi preview create
38
-
39
- To create a preview with an alternate compose file, run:
40
-
41
- $ uffizzi preview create docker-compose.uffizzi.alt.yml
data/man/uffizzi-delete DELETED
@@ -1,37 +0,0 @@
1
- .\" generated with Ronn-NG/v0.9.1
2
- .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "DELETE" "" "February 2022" ""
4
- .SH "NAME"
5
- \fBdelete\fR \- delete a preview
6
- .SH "SYNOPSIS"
7
- .nf
8
- uffizzi preview delete [PREVIEW_ID] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
9
- .fi
10
- .SH "DESCRIPTION"
11
- .nf
12
- Deletes a preview with the given preview ID\.
13
-
14
- This command can fail for the following reasons:
15
- \- The preview specified does not exist\.
16
- \- The preview specified belongs to a different project\.
17
-
18
- For more information on Uffizzi previews, see:
19
- https://docs\.uffizzi\.com/cli/preview
20
- .fi
21
- .SH "POSITIONAL ARGUMENTS"
22
- .nf
23
- [PREVIEW_ID]
24
- ID for the preview you want to delete\.
25
- .fi
26
- .SH "UFFIZZI WIDE FLAGS"
27
- .nf
28
- These flags are available to all commands: \-\-project\. Run $ uffizzi
29
- help for details\.
30
- .fi
31
- .SH "EXAMPLES"
32
- .nf
33
- The following command deletes the preview with ID deployment\-213:
34
-
35
- $ uffizzi preview delete deployment\-213
36
- .fi
37
-
@@ -1,28 +0,0 @@
1
- uffizzi preview delete - delete a preview
2
- ================================================================
3
-
4
- ## SYNOPSIS
5
- uffizzi preview delete [PREVIEW_ID] [UFFIZZI_WIDE_FLAG ...]
6
-
7
- ## DESCRIPTION
8
- Deletes a preview with the given preview ID.
9
-
10
- This command can fail for the following reasons:
11
- - The preview specified does not exist.
12
- - The preview specified belongs to a different project.
13
-
14
- For more information on Uffizzi previews, see:
15
- https://docs.uffizzi.com/cli/preview
16
-
17
- ## POSITIONAL ARGUMENTS
18
- [PREVIEW_ID]
19
- ID for the preview you want to delete.
20
-
21
- ## UFFIZZI WIDE FLAGS
22
- These flags are available to all commands: --project. Run $ uffizzi
23
- help for details.
24
-
25
- ## EXAMPLES
26
- The following command deletes the preview with ID deployment-213:
27
-
28
- $ uffizzi preview delete deployment-213
data/man/uffizzi-describe DELETED
@@ -1,38 +0,0 @@
1
- .\" generated with Ronn-NG/v0.9.1
2
- .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "DESCRIBE" "" "February 2022" ""
4
- .SH "NAME"
5
- \fBdescribe\fR \- show metadata for a preview
6
- .SH "SYNOPSIS"
7
- .nf
8
- uffizzi preview describe [PREVIEW_ID] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
9
- .fi
10
- .SH "DESCRIPTION"
11
- .nf
12
- Shows metadata for a project given a valid preview ID\.
13
-
14
- This command can fail for the following reasons:
15
- \- The preview specified does not exist\.
16
- \- The preview specified belongs to a different project\.
17
-
18
- For more information on Uffizzi previews, see:
19
- https://docs\.uffizzi\.com/cli/preview
20
- .fi
21
- .SH "POSITIONAL ARGUMENTS"
22
- .nf
23
- [PREVIEW_ID]
24
- ID for the preview you want to describe\.
25
- .fi
26
- .SH "UFFIZZI WIDE FLAGS"
27
- .nf
28
- These flags are available to all commands: \-\-project\. Run $ uffizzi
29
- help for details\.
30
- .fi
31
- .SH "EXAMPLES"
32
- .nf
33
- The following command prints metadata for the preview with ID
34
- deployment\-213:
35
-
36
- $ uffizzi preview describe deployment\-213
37
- .fi
38
-
@@ -1,29 +0,0 @@
1
- uffizzi preview describe - show metadata for a preview
2
- ================================================================
3
-
4
- ## SYNOPSIS
5
- uffizzi preview describe [PREVIEW_ID] [UFFIZZI_WIDE_FLAG ...]
6
-
7
- ## DESCRIPTION
8
- Shows metadata for a project given a valid preview ID.
9
-
10
- This command can fail for the following reasons:
11
- - The preview specified does not exist.
12
- - The preview specified belongs to a different project.
13
-
14
- For more information on Uffizzi previews, see:
15
- https://docs.uffizzi.com/cli/preview
16
-
17
- ## POSITIONAL ARGUMENTS
18
- [PREVIEW_ID]
19
- ID for the preview you want to describe.
20
-
21
- ## UFFIZZI WIDE FLAGS
22
- These flags are available to all commands: --project. Run $ uffizzi
23
- help for details.
24
-
25
- ## EXAMPLES
26
- The following command prints metadata for the preview with ID
27
- deployment-213:
28
-
29
- $ uffizzi preview describe deployment-213
data/man/uffizzi-events DELETED
@@ -1,30 +0,0 @@
1
- .\" generated with Ronn-NG/v0.9.1
2
- .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "UFFIZZI\-EVENTS" "" "March 2022" ""
4
- .SH "NAME"
5
- \fBuffizzi preview events \- show the deployment event logs for a preview\fR
6
- .P
7
- .SH SYNOPSIS
8
- uffizzi preview events [PREVIEW_ID] [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
9
- .P
10
- .SH DESCRIPTION
11
- Shows the deployment event logs for a given preview\.
12
-
13
- This command can fail for the following reasons:
14
- \- There is no preview with the given PREVIEW_ID
15
-
16
- For more information on event logs, see:
17
- https://docs\.uffizzi\.com/cli
18
-
19
- .SH POSITIONAL ARGUMENTS
20
- [PREVIEW_ID]
21
- The ID of the preview that you want to see events for\.
22
- .P
23
- .SH UFFIZZI WIDE FLAGS
24
- These flags are available to all commands: \-\-project\. Run $ uffizzi help for details\.
25
- .P
26
- .SH EXAMPLES
27
- The following command shows deployment events for the preview with ID deployment\-67:
28
- .P
29
- $ uffizzi preview events deployment\-67
30
-
@@ -1,29 +0,0 @@
1
- NAME
2
- uffizzi preview events - show the deployment event logs for a
3
- preview
4
-
5
- SYNOPSIS
6
- uffizzi preview events [PREVIEW_ID] [UFFIZZI_WIDE_FLAG ...]
7
-
8
- DESCRIPTION
9
- Shows the deployment event logs for a given preview.
10
-
11
- This command can fail for the following reasons:
12
- - There is no preview with the given PREVIEW_ID
13
-
14
- For more information on event logs, see:
15
- https://docs.uffizzi.com/cli
16
-
17
- POSITIONAL ARGUMENTS
18
- [PREVIEW_ID]
19
- The ID of the preview that you want to see events for.
20
-
21
- UFFIZZI WIDE FLAGS
22
- These flags are available to all commands: --project. Run $ uffizzi
23
- help for details.
24
-
25
- EXAMPLES
26
- The following command shows deployment events for the preview with
27
- ID deployment-67:
28
-
29
- $ uffizzi preview events deployment-67
data/man/uffizzi-list DELETED
@@ -1,33 +0,0 @@
1
- .\" generated with Ronn-NG/v0.9.1
2
- .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "LIST" "" "February 2022" ""
4
- .SH "NAME"
5
- \fBuffizzi preview list\fR \- list previews in a project
6
- .SH "SYNOPSIS"
7
- .nf
8
- uffizzi preview list [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
9
- .fi
10
- .SH "DESCRIPTION"
11
- .nf
12
- Lists all previews for a project, including active, building,
13
- deploying and failed previews\.
14
-
15
- For more information on Uffizzi previews, see:
16
- https://docs\.uffizzi\.com/cli/preview
17
- .fi
18
- .SH "UFFIZZI WIDE FLAGS"
19
- .nf
20
- These flags are available to all commands: \-\-project\. Run $ uffizzi
21
- help for details\.
22
- .fi
23
- .SH "EXAMPLES"
24
- .nf
25
- To list all previews in the default project, run:
26
-
27
- $ uffizzi preview list
28
-
29
- To list all previews in a project with name my_project, run:
30
-
31
- $ uffizzi preview list \-\-project="my_project"
32
- .fi
33
-
@@ -1,25 +0,0 @@
1
- uffizzi preview list - list previews in a project
2
- ================================================================
3
-
4
- ## SYNOPSIS
5
- uffizzi preview list [UFFIZZI_WIDE_FLAG ...]
6
-
7
- ## DESCRIPTION
8
- Lists all previews for a project, including active, building,
9
- deploying and failed previews.
10
-
11
- For more information on Uffizzi previews, see:
12
- https://docs.uffizzi.com/cli/preview
13
-
14
- ## UFFIZZI WIDE FLAGS
15
- These flags are available to all commands: --project. Run $ uffizzi
16
- help for details.
17
-
18
- ## EXAMPLES
19
- To list all previews in the default project, run:
20
-
21
- $ uffizzi preview list
22
-
23
- To list all previews in a project with name my_project, run:
24
-
25
- $ uffizzi preview list --project="my_project"
data/man/uffizzi-logout DELETED
@@ -1,21 +0,0 @@
1
- .\" generated with Ronn-NG/v0.9.1
2
- .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "UFFIZZI\-LOGOUT" "" "February 2022" ""
4
- .SH "NAME"
5
- \fBuffizzi\-logout\fR \- log out of a Uffizzi user account
6
- .SH "SYNOPSIS"
7
- \fBuffizzi logout\fR
8
- .SH "DESCRIPTION"
9
- .nf
10
- The uffizzi logout command logs out of a Uffizzi user account\.
11
-
12
- For more information on logout, see:
13
- https://docs\.uffizzi\.com/references/cli
14
- .fi
15
- .SH "UFFIZZI WIDE FLAGS"
16
- .nf
17
- These flags are available to all commands: \-\-project\. Run $ uffizzi
18
- help for details\.
19
- .fi
20
- .SH "EXAMPLES"
21
- uffizzi logout
@@ -1,19 +0,0 @@
1
- uffizzi-logout - log out of a Uffizzi user account
2
- ================================================================
3
-
4
- ## SYNOPSIS
5
-
6
- `uffizzi logout`
7
-
8
- ## DESCRIPTION
9
- The uffizzi logout command logs out of a Uffizzi user account.
10
-
11
- For more information on logout, see:
12
- https://docs.uffizzi.com/references/cli
13
-
14
- ## UFFIZZI WIDE FLAGS
15
- These flags are available to all commands: --project. Run $ uffizzi
16
- help for details.
17
-
18
- ## EXAMPLES
19
- uffizzi logout
data/man/uffizzi-preview DELETED
@@ -1,39 +0,0 @@
1
- .\" generated with Ronn-NG/v0.9.1
2
- .\" http://github.com/apjanke/ronn-ng/tree/0.9.1
3
- .TH "PREVIEW" "" "February 2022" ""
4
- .SH "NAME"
5
- \fBpreview\fR \- manage previews
6
- .SH "SYNOPSIS"
7
- .nf
8
- uffizzi preview COMMAND [UFFIZZI_WIDE_FLAG \|\.\|\.\|\.]
9
- .fi
10
- .SH "DESCRIPTION"
11
- .nf
12
- Manage Uffizzi previews
13
-
14
- For more information on Uffizzi previews, see:
15
- https://docs\.uffizzi\.com/cli/preview
16
- .fi
17
- .SH "UFFIZZI WIDE FLAGS"
18
- .nf
19
- These flags are available to all commands: \-\-project\. Run $ uffizzi
20
- help for details\.
21
- .fi
22
- .SH "COMMANDS"
23
- .nf
24
- COMMAND is one of the following:
25
-
26
- create
27
- Create a preview
28
-
29
- delete
30
- Delete a preview
31
-
32
- describe
33
- Display details of a preview
34
-
35
- list
36
- List all previews
37
- .fi
38
- .SH "Run \'uffizzi preview COMMAND \-\-help\' for more information on a command\."
39
-