@vibedhost/cli 1.0.0 → 1.0.1
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/index.js +11 -10
- package/package.json +2 -2
- package/src/index.ts +11 -10
package/dist/index.js
CHANGED
|
@@ -57,12 +57,13 @@ Website: https://www.vibedhost.com
|
|
|
57
57
|
Dashboard: https://www.vibedhost.com/dashboard/workspaces
|
|
58
58
|
|
|
59
59
|
Usage:
|
|
60
|
-
npx
|
|
60
|
+
npx @vibedhost/cli [command] [options]
|
|
61
|
+
vibed [command] [options]
|
|
61
62
|
|
|
62
63
|
Getting Started:
|
|
63
64
|
1. Create account & workspace: https://www.vibedhost.com/register
|
|
64
|
-
2. Authenticate terminal: npx
|
|
65
|
-
3. Deploy local project: npx
|
|
65
|
+
2. Authenticate terminal: npx @vibedhost/cli login
|
|
66
|
+
3. Deploy local project: npx @vibedhost/cli deploy
|
|
66
67
|
|
|
67
68
|
Commands:
|
|
68
69
|
login Authenticate this terminal with your VibedHost account
|
|
@@ -86,13 +87,13 @@ Inspection Options:
|
|
|
86
87
|
--ai Format latest error snippet for AI coding assistants
|
|
87
88
|
|
|
88
89
|
Examples:
|
|
89
|
-
npx
|
|
90
|
-
npx
|
|
91
|
-
npx
|
|
92
|
-
npx
|
|
93
|
-
npx
|
|
94
|
-
npx
|
|
95
|
-
npx
|
|
90
|
+
npx @vibedhost/cli login
|
|
91
|
+
npx @vibedhost/cli deploy
|
|
92
|
+
npx @vibedhost/cli deploy ./dist --name frontend-spa
|
|
93
|
+
npx @vibedhost/cli status
|
|
94
|
+
npx @vibedhost/cli logs my-app
|
|
95
|
+
npx @vibedhost/cli logs my-app --ai
|
|
96
|
+
npx @vibedhost/cli env set DATABASE_URL=postgresql://...
|
|
96
97
|
`);
|
|
97
98
|
}
|
|
98
99
|
async function handleLogin() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibedhost/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "VibedHost Cloud Engine CLI — Deploy applications to dedicated cloud workspaces directly from your terminal.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -30,4 +30,4 @@
|
|
|
30
30
|
"@types/node": "^20.14.0",
|
|
31
31
|
"typescript": "^5.4.5"
|
|
32
32
|
}
|
|
33
|
-
}
|
|
33
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -70,12 +70,13 @@ Website: https://www.vibedhost.com
|
|
|
70
70
|
Dashboard: https://www.vibedhost.com/dashboard/workspaces
|
|
71
71
|
|
|
72
72
|
Usage:
|
|
73
|
-
npx
|
|
73
|
+
npx @vibedhost/cli [command] [options]
|
|
74
|
+
vibed [command] [options]
|
|
74
75
|
|
|
75
76
|
Getting Started:
|
|
76
77
|
1. Create account & workspace: https://www.vibedhost.com/register
|
|
77
|
-
2. Authenticate terminal: npx
|
|
78
|
-
3. Deploy local project: npx
|
|
78
|
+
2. Authenticate terminal: npx @vibedhost/cli login
|
|
79
|
+
3. Deploy local project: npx @vibedhost/cli deploy
|
|
79
80
|
|
|
80
81
|
Commands:
|
|
81
82
|
login Authenticate this terminal with your VibedHost account
|
|
@@ -99,13 +100,13 @@ Inspection Options:
|
|
|
99
100
|
--ai Format latest error snippet for AI coding assistants
|
|
100
101
|
|
|
101
102
|
Examples:
|
|
102
|
-
npx
|
|
103
|
-
npx
|
|
104
|
-
npx
|
|
105
|
-
npx
|
|
106
|
-
npx
|
|
107
|
-
npx
|
|
108
|
-
npx
|
|
103
|
+
npx @vibedhost/cli login
|
|
104
|
+
npx @vibedhost/cli deploy
|
|
105
|
+
npx @vibedhost/cli deploy ./dist --name frontend-spa
|
|
106
|
+
npx @vibedhost/cli status
|
|
107
|
+
npx @vibedhost/cli logs my-app
|
|
108
|
+
npx @vibedhost/cli logs my-app --ai
|
|
109
|
+
npx @vibedhost/cli env set DATABASE_URL=postgresql://...
|
|
109
110
|
`);
|
|
110
111
|
}
|
|
111
112
|
|