Skip to content

Commit 4272d91

Browse files
committed
Update legal and branding
1 parent 0d6860e commit 4272d91

21 files changed

Lines changed: 74 additions & 60 deletions

File tree

LICENSE

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,13 @@
1-
MIT License
1+
Apache License
2+
Version 2.0, January 2004
3+
http://www.apache.org/licenses/
24

3-
Copyright (c) 2026 smbCloud
5+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
46

5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
7+
1. Definitions.
118

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
9+
"License" shall mean the terms and conditions for use, reproduction,
10+
and distribution as defined by Sections 1 through 9 of this document.
1411

15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
12+
"Licensor" shall mean the copyright owner or entity authorized by
13+
the copyright owner

README.MD

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
<a href="https://github.com/smbcloudXYZ/smbcloud-cli/releases">Releases</a>
1818
</p>
1919
<p align="center">
20+
<a href="https://crates.io/crates/smbcloud-cli"><img alt="Crates.io" src="https://img.shields.io/crates/v/smbcloud-cli"></a>
2021
<a href="https://www.npmjs.com/package/@smbcloud/cli"><img alt="npm" src="https://img.shields.io/npm/v/@smbcloud/cli"></a>
22+
<a href="https://github.com/smbcloudXYZ/homebrew-tap"><img alt="Homebrew" src="https://img.shields.io/badge/homebrew-tap-orange?logo=homebrew"></a>
2123
<a href="https://pypi.org/project/smbcloud-cli/"><img alt="PyPI" src="https://img.shields.io/pypi/v/smbcloud-cli"></a>
2224
<a href="https://github.com/smbcloudXYZ/smbcloud-cli/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/smbcloudXYZ/smbcloud-cli"></a>
2325
</p>

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Seto Elkahfi <hej@setoelkahfi.se>"]
66
description = "smbCloud command line interface."
77
license = "Apache-2.0"
88
repository = "https://github.com/smbcloudXYZ/smbcloud-cli"
9-
documentation = "https://docs.smbcloud.xyz/cli"
9+
documentation = "https://smbcloud.xyz/posts"
1010
keywords = ["cli", "cloud", "web2", "web3", "smbcloud"]
1111
categories = [
1212
"command-line-utilities",

crates/cli/README.md

Lines changed: 30 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
1-
# smbcloud-cli
2-
3-
This is a CLI program to access [smbcloud](https://smbcloud.xyz/).
1+
<!-- LOGO -->
2+
<h1>
3+
<p align="center">
4+
<img src="https://avatars.githubusercontent.com/u/89791739?s=200&v=4" alt="smbCloud Logo" width="128">
5+
<br>smbCloud CLI
6+
</h1>
7+
<p align="center">
8+
Deploy to the cloud in one command.
9+
<br />
10+
<br />
11+
<a href="https://smbcloud.xyz/">Website</a>
12+
·
13+
<a href="https://smbcloud.xyz/posts">Documentation</a>
14+
·
15+
<a href="https://github.com/smbcloudXYZ/smbcloud-cli/releases">Releases</a>
16+
</p>
17+
<p align="center">
18+
<a href="https://crates.io/crates/smbcloud-cli"><img alt="Crates.io" src="https://img.shields.io/crates/v/smbcloud-cli"></a>
19+
<a href="https://github.com/smbcloudXYZ/smbcloud-cli/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/github/license/smbcloudXYZ/smbcloud-cli"></a>
20+
</p>
21+
</p>
422

523
## Installation
624

7-
One can install this program in different ways.
25+
One can install this program in different ways.
826

927
### With Cargo
1028

@@ -15,14 +33,14 @@ cargo install smbcloud-cli
1533
### Homebrew (MacOS/Linux)
1634

1735
```bash
18-
brew tap smbcloud/tap
36+
brew tap smbcloudXYZ/tap
1937
brew install cli
2038
```
2139

2240
### With NPM
2341

24-
```
25-
npm i -g @smbcloud/cli
42+
```bash
43+
npm install -g @smbcloud/cli
2644
```
2745

2846
### With PyPI
@@ -38,22 +56,21 @@ Simply rerun the installation command.
3856
## Uninstall
3957

4058
```bash
41-
4259
# With cargo
4360
cargo uninstall smbcloud-cli
4461

4562
# With npm
4663
npm uninstall -g @smbcloud/cli
4764

4865
# With Homebrew
49-
brew untap smbcloud/tap
50-
brew uninstall smbcloud/tap/cli
66+
brew uninstall cli
67+
brew untap smbcloudXYZ/tap
5168

5269
# With pip
5370
pip uninstall smbcloud-cli
5471
```
5572

56-
## Usage:
73+
## Usage
5774

5875
```bash
5976
smb --help
@@ -63,17 +80,11 @@ smb --help
6380

6481
- Setup your Rust tooling.
6582
- Clone the repo.
66-
- Provide the environement variables in the .env.local.
83+
- Provide the environment variables in the .env.local.
6784
- Run `cargo run`.
6885

6986
## Credits
7087

7188
This repo is inspired by [Sugar](https://github.com/metaplex-foundation/sugar).
7289

73-
This repo tries to follow [the 12 factor CLI app](https://medium.com/@jdxcode/12-factor-cli-apps-dd3c227a0e46) principles by Heroku team.
74-
75-
NPM support guide by [orhun.dev](https://blog.orhun.dev/packaging-rust-for-npm/).
76-
77-
## Licence
78-
79-
MIT.
90+
This repo tries to follow [the 12 factor CLI app](https://medium.com/@jdxcode/12-factor-cli-apps-dd3c227a0e46) principles by

crates/smbcloud-auth-py/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ version = "0.3.34"
44
edition = "2024"
55
authors = ["Seto Elkahfi <hej@setoelkahfi.se>"]
66
description = "Python bindings for the smbCloud Auth SDK."
7-
license = "MIT"
7+
license = "Apache-2.0"
88
repository = "https://github.com/smbcloudXYZ/smbcloud-cli"
9-
documentation = "https://docs.smbcloud.xyz/cli"
9+
documentation = "https://smbcloud.xyz/posts"
1010
keywords = ["smbcloud", "auth", "sdk", "python", "pyo3"]
1111
categories = ["api-bindings", "authentication", "development-tools"]
1212
readme = "README.md"

crates/smbcloud-auth-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Seto Elkahfi <hej@setoelkahfi.se>"]
66
description = "Browser bindings for the smbCloud Auth SDK."
77
license = "Apache-2.0"
88
repository = "https://github.com/smbcloudXYZ/smbcloud-cli"
9-
documentation = "https://docs.smbcloud.xyz/cli"
9+
documentation = "https://smbcloud.xyz/posts"
1010
keywords = ["cli", "cloud", "web2", "web3", "smbcloud"]
1111
categories = [
1212
"command-line-utilities",

crates/smbcloud-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Seto Elkahfi <hej@setoelkahfi.se>"]
66
description = "Cross-platform Auth SDK for the smbCloud platform."
77
license = "Apache-2.0"
88
repository = "https://github.com/smbcloudXYZ/smbcloud-cli"
9-
documentation = "https://docs.smbcloud.xyz/cli"
9+
documentation = "https://smbcloud.xyz/posts"
1010
keywords = ["cli", "cloud", "web2", "web3", "smbcloud"]
1111
categories = [
1212
"command-line-utilities",

crates/smbcloud-gresiq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77
authors = ["Seto Elkahfi <hej@setoelkahfi.se>"]
88
license = "Apache-2.0"
99
repository = "https://github.com/smbcloudXYZ/smbcloud-cli"
10-
documentation = "https://docs.smbcloud.xyz/cli"
10+
documentation = "https://smbcloud.xyz/posts"
1111
keywords = ["cli", "cloud", "web2", "web3", "smbcloud"]
1212
categories = [
1313
"command-line-utilities",

crates/smbcloud-model/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Seto Elkahfi <hej@setoelkahfi.se>"]
66
description = "Command line tool for deploying NextJS app on the smbCloud platform."
77
license = "Apache-2.0"
88
repository = "https://github.com/smbcloudXYZ/smbcloud-cli"
9-
documentation = "https://docs.smbcloud.xyz/cli"
9+
documentation = "https://smbcloud.xyz/posts"
1010
keywords = ["cli", "cloud", "web2", "web3", "smbcloud"]
1111
categories = [
1212
"command-line-utilities",

crates/smbcloud-network/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["Seto Elkahfi <hej@setoelkahfi.se>"]
77
description = "Command line tool for deploying NextJS app on the smbCloud platform."
88
license = "Apache-2.0"
99
repository = "https://github.com/smbcloudXYZ/smbcloud-cli"
10-
documentation = "https://docs.smbcloud.xyz/cli"
10+
documentation = "https://smbcloud.xyz/posts"
1111
keywords = ["cli", "cloud", "web2", "web3", "smbcloud"]
1212
categories = [
1313
"command-line-utilities",

0 commit comments

Comments
 (0)