shipfe 1.1.3 → 1.1.5
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.
- package/README.md +15 -15
- package/bin/shipfe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,38 +4,38 @@
|
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
[](https://github.com/Master-Jian/shipfe-rust)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
A powerful, **free**, **Rust-based** web application deployment tool that **does not request network**, enabling **one-click upload of frontend static deployment packages to servers**. Supports multi-environment and sub-environment deployment with zero-downtime atomic deployment functionality.
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Documentation
|
|
10
|
+
|
|
11
|
+
📖 [Full Documentation](https://master-jian.github.io/shipfe-rust/)
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
10
14
|
|
|
11
15
|
```bash
|
|
12
16
|
npm install -g shipfe
|
|
13
17
|
```
|
|
14
18
|
|
|
15
|
-
##
|
|
19
|
+
## Quick Start
|
|
16
20
|
|
|
17
|
-
1.
|
|
21
|
+
1. Initialize the project:
|
|
18
22
|
```bash
|
|
19
23
|
shipfe init
|
|
20
24
|
```
|
|
21
25
|
|
|
22
|
-
2.
|
|
26
|
+
2. Configure deployment in `shipfe.config.json`
|
|
23
27
|
|
|
24
|
-
3.
|
|
28
|
+
3. Deploy:
|
|
25
29
|
```bash
|
|
26
30
|
shipfe deploy --profile prod
|
|
27
31
|
```
|
|
28
32
|
|
|
29
|
-
##
|
|
30
|
-
|
|
31
|
-
📖 [完整文档](https://master-jian.github.io/shipfe-rust/)
|
|
32
|
-
|
|
33
|
-
## 常用命令
|
|
33
|
+
## Common Commands
|
|
34
34
|
|
|
35
|
-
- `shipfe deploy --profile <env>` -
|
|
36
|
-
- `shipfe deploy --atomic` -
|
|
37
|
-
- `shipfe rollback --profile <env> --to <timestamp>` -
|
|
35
|
+
- `shipfe deploy --profile <env>` - Deploy to specified environment
|
|
36
|
+
- `shipfe deploy --atomic` - Atomic deployment
|
|
37
|
+
- `shipfe rollback --profile <env> --to <timestamp>` - Rollback to specified version
|
|
38
38
|
|
|
39
|
-
##
|
|
39
|
+
## License
|
|
40
40
|
|
|
41
41
|
MIT
|
package/bin/shipfe
CHANGED
|
Binary file
|