Skip to content

Commit ff4c79c

Browse files
committed
chore(docs): Auto-update docs and licenses
Signed-off-by: NautiluX <2600004+NautiluX@users.noreply.github.com>
1 parent a462e12 commit ff4c79c

45 files changed

Lines changed: 321 additions & 180 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

NOTICE

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ This project includes code licensed under the following terms:
55

66
----------
77
Module: code.gitea.io/sdk/gitea
8-
Version: v0.23.2
8+
Version: v0.24.1
99
License: MIT
10-
License URL: https://gitea.com/gitea/go-sdk/src/tag/gitea/v0.23.2/gitea/LICENSE
10+
License URL: https://gitea.com/gitea/go-sdk/src/tag/gitea/v0.24.1/gitea/LICENSE
1111

1212
----------
1313
Module: dario.cat/mergo
@@ -17,9 +17,9 @@ License URL: https://github.com/imdario/mergo/blob/v1.0.2/LICENSE
1717

1818
----------
1919
Module: github.com/42wim/httpsig
20-
Version: v1.2.3
20+
Version: v1.2.4
2121
License: BSD-3-Clause
22-
License URL: https://github.com/42wim/httpsig/blob/v1.2.3/LICENSE
22+
License URL: https://github.com/42wim/httpsig/blob/v1.2.4/LICENSE
2323

2424
----------
2525
Module: github.com/Masterminds/semver/v3
@@ -29,9 +29,9 @@ License URL: https://github.com/Masterminds/semver/blob/v3.4.0/LICENSE.txt
2929

3030
----------
3131
Module: github.com/ProtonMail/go-crypto
32-
Version: v1.3.0
32+
Version: v1.4.0
3333
License: BSD-3-Clause
34-
License URL: https://github.com/ProtonMail/go-crypto/blob/v1.3.0/LICENSE
34+
License URL: https://github.com/ProtonMail/go-crypto/blob/v1.4.0/LICENSE
3535

3636
----------
3737
Module: github.com/beorn7/perks/quantile
@@ -125,9 +125,9 @@ License URL: https://github.com/go-git/go-billy/blob/v5.8.0/LICENSE
125125

126126
----------
127127
Module: github.com/go-git/go-git/v5
128-
Version: v5.17.0
128+
Version: v5.17.1
129129
License: Apache-2.0
130-
License URL: https://github.com/go-git/go-git/blob/v5.17.0/LICENSE
130+
License URL: https://github.com/go-git/go-git/blob/v5.17.1/LICENSE
131131

132132
----------
133133
Module: github.com/go-logr/logr
@@ -395,9 +395,9 @@ License URL: https://cs.opensource.google/go/x/net/+/v0.52.0:LICENSE
395395

396396
----------
397397
Module: golang.org/x/oauth2
398-
Version: v0.35.0
398+
Version: v0.36.0
399399
License: BSD-3-Clause
400-
License URL: https://cs.opensource.google/go/x/oauth2/+/v0.35.0:LICENSE
400+
License URL: https://cs.opensource.google/go/x/oauth2/+/v0.36.0:LICENSE
401401

402402
----------
403403
Module: golang.org/x/sync/errgroup

api/wakeup.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Codesphere Inc.
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
package api
25

36
import (

cli/cmd/ps.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Codesphere Inc.
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
package cmd
25

36
import (

cli/cmd/up.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Codesphere Inc.
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
package cmd
25

36
import (

docs/README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ Manage and debug resources deployed in Codesphere via command line.
99
### Options
1010

1111
```
12-
-a, --api string URL of Codesphere API (can also be CS_API)
13-
-h, --help help for cs
14-
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
15-
-v, --verbose Verbose output
16-
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
12+
-a, --api string URL of Codesphere API (can also be CS_API)
13+
-h, --help help for cs
14+
--state-file string Path to the state file, defaults to .cs-up.yaml (default ".cs-up.yaml")
15+
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
16+
-v, --verbose Verbose output
17+
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
1718
```
1819

1920
### SEE ALSO
@@ -29,10 +30,12 @@ Manage and debug resources deployed in Codesphere via command line.
2930
* [cs log](cs_log.md) - Retrieve run logs from services
3031
* [cs monitor](cs_monitor.md) - Monitor a command and report health information
3132
* [cs open](cs_open.md) - Open the Codesphere IDE
33+
* [cs ps](cs_ps.md) - List services of a workspace
3234
* [cs scale](cs_scale.md) - Scale Codesphere resources
3335
* [cs set-env](cs_set-env.md) - Set environment variables
3436
* [cs start](cs_start.md) - Start workspace pipeline
3537
* [cs sync](cs_sync.md) - Sync Codesphere resources
38+
* [cs up](cs_up.md) - Deploy your local code to Codesphere
3639
* [cs update](cs_update.md) - Update Codesphere CLI
3740
* [cs version](cs_version.md) - Print version
3841
* [cs wake-up](cs_wake-up.md) - Wake up an on-demand workspace

docs/cs.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ Manage and debug resources deployed in Codesphere via command line.
99
### Options
1010

1111
```
12-
-a, --api string URL of Codesphere API (can also be CS_API)
13-
-h, --help help for cs
14-
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
15-
-v, --verbose Verbose output
16-
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
12+
-a, --api string URL of Codesphere API (can also be CS_API)
13+
-h, --help help for cs
14+
--state-file string Path to the state file, defaults to .cs-up.yaml (default ".cs-up.yaml")
15+
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
16+
-v, --verbose Verbose output
17+
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
1718
```
1819

1920
### SEE ALSO
@@ -29,10 +30,12 @@ Manage and debug resources deployed in Codesphere via command line.
2930
* [cs log](cs_log.md) - Retrieve run logs from services
3031
* [cs monitor](cs_monitor.md) - Monitor a command and report health information
3132
* [cs open](cs_open.md) - Open the Codesphere IDE
33+
* [cs ps](cs_ps.md) - List services of a workspace
3234
* [cs scale](cs_scale.md) - Scale Codesphere resources
3335
* [cs set-env](cs_set-env.md) - Set environment variables
3436
* [cs start](cs_start.md) - Start workspace pipeline
3537
* [cs sync](cs_sync.md) - Sync Codesphere resources
38+
* [cs up](cs_up.md) - Deploy your local code to Codesphere
3639
* [cs update](cs_update.md) - Update Codesphere CLI
3740
* [cs version](cs_version.md) - Print version
3841
* [cs wake-up](cs_wake-up.md) - Wake up an on-demand workspace

docs/cs_create.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ Create codesphere resources like workspaces.
1515
### Options inherited from parent commands
1616

1717
```
18-
-a, --api string URL of Codesphere API (can also be CS_API)
19-
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
20-
-v, --verbose Verbose output
21-
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
18+
-a, --api string URL of Codesphere API (can also be CS_API)
19+
--state-file string Path to the state file, defaults to .cs-up.yaml (default ".cs-up.yaml")
20+
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
21+
-v, --verbose Verbose output
22+
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
2223
```
2324

2425
### SEE ALSO

docs/cs_create_workspace.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,11 @@ $ cs create workspace my-workspace -r https://github.com/my-org/my-private-proje
6363
### Options inherited from parent commands
6464

6565
```
66-
-a, --api string URL of Codesphere API (can also be CS_API)
67-
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
68-
-v, --verbose Verbose output
69-
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
66+
-a, --api string URL of Codesphere API (can also be CS_API)
67+
--state-file string Path to the state file, defaults to .cs-up.yaml (default ".cs-up.yaml")
68+
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
69+
-v, --verbose Verbose output
70+
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
7071
```
7172

7273
### SEE ALSO

docs/cs_curl.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ $ cs curl / -- -I
4545
### Options inherited from parent commands
4646

4747
```
48-
-a, --api string URL of Codesphere API (can also be CS_API)
49-
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
50-
-v, --verbose Verbose output
51-
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
48+
-a, --api string URL of Codesphere API (can also be CS_API)
49+
--state-file string Path to the state file, defaults to .cs-up.yaml (default ".cs-up.yaml")
50+
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
51+
-v, --verbose Verbose output
52+
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
5253
```
5354

5455
### SEE ALSO

docs/cs_delete.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ Delete Codesphere resources, e.g. workspaces.
1515
### Options inherited from parent commands
1616

1717
```
18-
-a, --api string URL of Codesphere API (can also be CS_API)
19-
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
20-
-v, --verbose Verbose output
21-
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
18+
-a, --api string URL of Codesphere API (can also be CS_API)
19+
--state-file string Path to the state file, defaults to .cs-up.yaml (default ".cs-up.yaml")
20+
-t, --team int Team ID (relevant for some commands, can also be CS_TEAM_ID) (default -1)
21+
-v, --verbose Verbose output
22+
-w, --workspace int Workspace ID (relevant for some commands, can also be CS_WORKSPACE_ID) (default -1)
2223
```
2324

2425
### SEE ALSO

0 commit comments

Comments
 (0)