@ludeo/cli 1.1.1 → 1.1.2
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/dist/ludeo +0 -0
- package/dist/ludeo-darwin-amd64 +0 -0
- package/dist/ludeo-darwin-arm64 +0 -0
- package/dist/ludeo-linux-amd64 +0 -0
- package/dist/ludeo-linux-arm64 +0 -0
- package/dist/ludeo-windows-amd64.exe +0 -0
- package/dist/ludeo-windows-arm64.exe +0 -0
- package/package.json +1 -1
- package/README.md.backup +0 -125
- package/dist/README.md +0 -125
package/dist/ludeo
CHANGED
|
Binary file
|
package/dist/ludeo-darwin-amd64
CHANGED
|
Binary file
|
package/dist/ludeo-darwin-arm64
CHANGED
|
Binary file
|
package/dist/ludeo-linux-amd64
CHANGED
|
Binary file
|
package/dist/ludeo-linux-arm64
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/README.md.backup
DELETED
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
# Ludeo CLI
|
|
2
|
-
|
|
3
|
-
The official Ludeo CLI tool for uploading game builds to the Ludeo platform. Install via npm for easy setup and automatic updates.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install -g @ludeo/cli
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
Verify the installation:
|
|
12
|
-
```bash
|
|
13
|
-
ludeo --version
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
## Quick Start
|
|
17
|
-
|
|
18
|
-
### 1. Authentication
|
|
19
|
-
Get your access token from the Ludeo platform and authenticate:
|
|
20
|
-
```bash
|
|
21
|
-
ludeo auth login --access-token YOUR_ACCESS_TOKEN
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
### 2. Upload Your Build
|
|
25
|
-
Upload your game build with a simple command:
|
|
26
|
-
```bash
|
|
27
|
-
ludeo builds upload \
|
|
28
|
-
--game-id YOUR_GAME_ID \
|
|
29
|
-
--exec-path ./builds/game.exe \
|
|
30
|
-
--local-directory ./builds
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
### 3. Optional Parameters
|
|
34
|
-
Add version information and descriptions:
|
|
35
|
-
```bash
|
|
36
|
-
ludeo builds upload \
|
|
37
|
-
--game-id YOUR_GAME_ID \
|
|
38
|
-
--exec-path ./builds/game.exe \
|
|
39
|
-
--local-directory ./builds \
|
|
40
|
-
--game-version "1.2.3" \
|
|
41
|
-
--changes-description "Bug fixes and performance improvements"
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
### 4. Manage Builds
|
|
45
|
-
```bash
|
|
46
|
-
# List your builds
|
|
47
|
-
ludeo builds list --game-id YOUR_GAME_ID
|
|
48
|
-
|
|
49
|
-
# Get build details
|
|
50
|
-
ludeo builds get --game-id YOUR_GAME_ID --build-id BUILD_ID
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
## Features
|
|
54
|
-
|
|
55
|
-
- **Easy Upload**: Upload complete game builds with a single command
|
|
56
|
-
- **Large File Support**: Automatically handles large files and multiple files
|
|
57
|
-
- **Progress Tracking**: Real-time progress updates during uploads
|
|
58
|
-
- **Cross-Platform**: Works on Windows, macOS, and Linux
|
|
59
|
-
- **Automatic Updates**: Keep your CLI up to date with npm
|
|
60
|
-
|
|
61
|
-
## Updating
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
npm update -g @ludeo/cli
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## CI/CD Integration
|
|
68
|
-
|
|
69
|
-
### GitHub Actions
|
|
70
|
-
```yaml
|
|
71
|
-
- name: Install Ludeo CLI
|
|
72
|
-
run: npm install -g @ludeo/cli
|
|
73
|
-
|
|
74
|
-
- name: Upload Build
|
|
75
|
-
run: |
|
|
76
|
-
ludeo auth login --access-token ${{ secrets.LUDEO_ACCESS_TOKEN }}
|
|
77
|
-
ludeo builds upload \
|
|
78
|
-
--game-id ${{ env.GAME_ID }} \
|
|
79
|
-
--exec-path ./builds/game.exe \
|
|
80
|
-
--local-directory ./builds
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
## Troubleshooting
|
|
84
|
-
|
|
85
|
-
### Installation Issues
|
|
86
|
-
|
|
87
|
-
**Binary not found error:**
|
|
88
|
-
```bash
|
|
89
|
-
npm rebuild @ludeo/cli
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
**Permission issues (macOS/Linux):**
|
|
93
|
-
```bash
|
|
94
|
-
sudo npm install -g @ludeo/cli
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
**Windows issues:**
|
|
98
|
-
- Run PowerShell as Administrator
|
|
99
|
-
- Ensure Node.js is properly installed
|
|
100
|
-
|
|
101
|
-
### Common Issues
|
|
102
|
-
|
|
103
|
-
**Authentication errors:**
|
|
104
|
-
- Verify your access token is valid
|
|
105
|
-
- Check token permissions with `ludeo auth status`
|
|
106
|
-
|
|
107
|
-
**Upload failures:**
|
|
108
|
-
- Ensure your build directory exists and is readable
|
|
109
|
-
- Check your internet connection
|
|
110
|
-
- Verify file paths are correct
|
|
111
|
-
|
|
112
|
-
**Large files:**
|
|
113
|
-
- Large files may take time to upload
|
|
114
|
-
- Ensure stable internet connection
|
|
115
|
-
|
|
116
|
-
## Support
|
|
117
|
-
|
|
118
|
-
Need help? Here's how to get support:
|
|
119
|
-
|
|
120
|
-
1. Check this README and troubleshooting section
|
|
121
|
-
2. Run `npm rebuild @ludeo/cli` if you encounter issues
|
|
122
|
-
3. Contact the Ludeo platform team for additional assistance
|
|
123
|
-
|
|
124
|
-
For detailed documentation and advanced usage, visit the [Ludeo Developer Portal](https://developers.ludeo.com).
|
|
125
|
-
|
package/dist/README.md
DELETED
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
# Ludeo CLI
|
|
2
|
-
|
|
3
|
-
The official Ludeo CLI tool for uploading game builds to the Ludeo platform. Install via npm for easy setup and automatic updates.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install -g @ludeo/cli
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
Verify the installation:
|
|
12
|
-
```bash
|
|
13
|
-
ludeo --version
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
## Quick Start
|
|
17
|
-
|
|
18
|
-
### 1. Authentication
|
|
19
|
-
Get your access token from the Ludeo platform and authenticate:
|
|
20
|
-
```bash
|
|
21
|
-
ludeo auth login --access-token YOUR_ACCESS_TOKEN
|
|
22
|
-
```
|
|
23
|
-
|
|
24
|
-
### 2. Upload Your Build
|
|
25
|
-
Upload your game build with a simple command:
|
|
26
|
-
```bash
|
|
27
|
-
ludeo builds upload \
|
|
28
|
-
--game-id YOUR_GAME_ID \
|
|
29
|
-
--exec-path ./builds/game.exe \
|
|
30
|
-
--local-directory ./builds
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
### 3. Optional Parameters
|
|
34
|
-
Add version information and descriptions:
|
|
35
|
-
```bash
|
|
36
|
-
ludeo builds upload \
|
|
37
|
-
--game-id YOUR_GAME_ID \
|
|
38
|
-
--exec-path ./builds/game.exe \
|
|
39
|
-
--local-directory ./builds \
|
|
40
|
-
--game-version "1.2.3" \
|
|
41
|
-
--changes-description "Bug fixes and performance improvements"
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
### 4. Manage Builds
|
|
45
|
-
```bash
|
|
46
|
-
# List your builds
|
|
47
|
-
ludeo builds list --game-id YOUR_GAME_ID
|
|
48
|
-
|
|
49
|
-
# Get build details
|
|
50
|
-
ludeo builds get --game-id YOUR_GAME_ID --build-id BUILD_ID
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
## Features
|
|
54
|
-
|
|
55
|
-
- **Easy Upload**: Upload complete game builds with a single command
|
|
56
|
-
- **Large File Support**: Automatically handles large files and multiple files
|
|
57
|
-
- **Progress Tracking**: Real-time progress updates during uploads
|
|
58
|
-
- **Cross-Platform**: Works on Windows, macOS, and Linux
|
|
59
|
-
- **Automatic Updates**: Keep your CLI up to date with npm
|
|
60
|
-
|
|
61
|
-
## Updating
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
npm update -g @ludeo/cli
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
## CI/CD Integration
|
|
68
|
-
|
|
69
|
-
### GitHub Actions
|
|
70
|
-
```yaml
|
|
71
|
-
- name: Install Ludeo CLI
|
|
72
|
-
run: npm install -g @ludeo/cli
|
|
73
|
-
|
|
74
|
-
- name: Upload Build
|
|
75
|
-
run: |
|
|
76
|
-
ludeo auth login --access-token ${{ secrets.LUDEO_ACCESS_TOKEN }}
|
|
77
|
-
ludeo builds upload \
|
|
78
|
-
--game-id ${{ env.GAME_ID }} \
|
|
79
|
-
--exec-path ./builds/game.exe \
|
|
80
|
-
--local-directory ./builds
|
|
81
|
-
```
|
|
82
|
-
|
|
83
|
-
## Troubleshooting
|
|
84
|
-
|
|
85
|
-
### Installation Issues
|
|
86
|
-
|
|
87
|
-
**Binary not found error:**
|
|
88
|
-
```bash
|
|
89
|
-
npm rebuild @ludeo/cli
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
**Permission issues (macOS/Linux):**
|
|
93
|
-
```bash
|
|
94
|
-
sudo npm install -g @ludeo/cli
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
**Windows issues:**
|
|
98
|
-
- Run PowerShell as Administrator
|
|
99
|
-
- Ensure Node.js is properly installed
|
|
100
|
-
|
|
101
|
-
### Common Issues
|
|
102
|
-
|
|
103
|
-
**Authentication errors:**
|
|
104
|
-
- Verify your access token is valid
|
|
105
|
-
- Check token permissions with `ludeo auth status`
|
|
106
|
-
|
|
107
|
-
**Upload failures:**
|
|
108
|
-
- Ensure your build directory exists and is readable
|
|
109
|
-
- Check your internet connection
|
|
110
|
-
- Verify file paths are correct
|
|
111
|
-
|
|
112
|
-
**Large files:**
|
|
113
|
-
- Large files may take time to upload
|
|
114
|
-
- Ensure stable internet connection
|
|
115
|
-
|
|
116
|
-
## Support
|
|
117
|
-
|
|
118
|
-
Need help? Here's how to get support:
|
|
119
|
-
|
|
120
|
-
1. Check this README and troubleshooting section
|
|
121
|
-
2. Run `npm rebuild @ludeo/cli` if you encounter issues
|
|
122
|
-
3. Contact the Ludeo platform team for additional assistance
|
|
123
|
-
|
|
124
|
-
For detailed documentation and advanced usage, visit the [Ludeo Developer Portal](https://developers.ludeo.com).
|
|
125
|
-
|