@dokploy/cli 0.2.3
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 +112 -0
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +6 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/dist/commands/app/create.d.ts +13 -0
- package/dist/commands/app/create.js +77 -0
- package/dist/commands/app/delete.d.ts +9 -0
- package/dist/commands/app/delete.js +84 -0
- package/dist/commands/app/deploy.d.ts +6 -0
- package/dist/commands/app/deploy.js +69 -0
- package/dist/commands/app/stop.d.ts +6 -0
- package/dist/commands/app/stop.js +69 -0
- package/dist/commands/authenticate.d.ts +10 -0
- package/dist/commands/authenticate.js +79 -0
- package/dist/commands/database/mariadb/create.d.ts +9 -0
- package/dist/commands/database/mariadb/create.js +105 -0
- package/dist/commands/database/mariadb/delete.d.ts +9 -0
- package/dist/commands/database/mariadb/delete.js +95 -0
- package/dist/commands/database/mariadb/deploy.d.ts +6 -0
- package/dist/commands/database/mariadb/deploy.js +69 -0
- package/dist/commands/database/mariadb/stop.d.ts +6 -0
- package/dist/commands/database/mariadb/stop.js +69 -0
- package/dist/commands/database/mongo/create.d.ts +9 -0
- package/dist/commands/database/mongo/create.js +107 -0
- package/dist/commands/database/mongo/delete.d.ts +9 -0
- package/dist/commands/database/mongo/delete.js +95 -0
- package/dist/commands/database/mongo/deploy.d.ts +6 -0
- package/dist/commands/database/mongo/deploy.js +69 -0
- package/dist/commands/database/mongo/stop.d.ts +6 -0
- package/dist/commands/database/mongo/stop.js +69 -0
- package/dist/commands/database/mysql/create.d.ts +9 -0
- package/dist/commands/database/mysql/create.js +112 -0
- package/dist/commands/database/mysql/delete.d.ts +9 -0
- package/dist/commands/database/mysql/delete.js +97 -0
- package/dist/commands/database/mysql/deploy.d.ts +6 -0
- package/dist/commands/database/mysql/deploy.js +69 -0
- package/dist/commands/database/mysql/stop.d.ts +6 -0
- package/dist/commands/database/mysql/stop.js +69 -0
- package/dist/commands/database/postgres/create.d.ts +9 -0
- package/dist/commands/database/postgres/create.js +107 -0
- package/dist/commands/database/postgres/delete.d.ts +9 -0
- package/dist/commands/database/postgres/delete.js +94 -0
- package/dist/commands/database/postgres/deploy.d.ts +6 -0
- package/dist/commands/database/postgres/deploy.js +69 -0
- package/dist/commands/database/postgres/stop.d.ts +6 -0
- package/dist/commands/database/postgres/stop.js +69 -0
- package/dist/commands/database/redis/create.d.ts +9 -0
- package/dist/commands/database/redis/create.js +95 -0
- package/dist/commands/database/redis/delete.d.ts +9 -0
- package/dist/commands/database/redis/delete.js +96 -0
- package/dist/commands/database/redis/deploy.d.ts +6 -0
- package/dist/commands/database/redis/deploy.js +69 -0
- package/dist/commands/database/redis/stop.d.ts +6 -0
- package/dist/commands/database/redis/stop.js +69 -0
- package/dist/commands/project/create.d.ts +10 -0
- package/dist/commands/project/create.js +74 -0
- package/dist/commands/project/info.d.ts +10 -0
- package/dist/commands/project/info.js +122 -0
- package/dist/commands/project/list.d.ts +6 -0
- package/dist/commands/project/list.js +43 -0
- package/dist/commands/verify.d.ts +6 -0
- package/dist/commands/verify.js +45 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/utils/http.d.ts +4 -0
- package/dist/utils/http.js +4 -0
- package/dist/utils/shared.d.ts +10 -0
- package/dist/utils/shared.js +55 -0
- package/dist/utils/slug.d.ts +1 -0
- package/dist/utils/slug.js +12 -0
- package/dist/utils/slugify.d.ts +3 -0
- package/dist/utils/slugify.js +2 -0
- package/dist/utils/utils.d.ts +6 -0
- package/dist/utils/utils.js +19 -0
- package/oclif.manifest.json +895 -0
- package/package.json +87 -0
package/package.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dokploy/cli",
|
|
3
|
+
"description": "A CLI to manage dokploy server remotely",
|
|
4
|
+
"version": "v0.2.3",
|
|
5
|
+
"author": "Mauricio Siu",
|
|
6
|
+
"licenses": [{
|
|
7
|
+
"type": "MIT",
|
|
8
|
+
"url": "https://github.com/Dokploy/cli/blob/master/LICENSE"
|
|
9
|
+
}],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"dokploy": "./bin/run.js"
|
|
15
|
+
},
|
|
16
|
+
"bugs": "https://github.com/Dokploy/cli/issues",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@oclif/core": "^3",
|
|
19
|
+
"@oclif/plugin-help": "^6",
|
|
20
|
+
"@oclif/plugin-plugins": "^5",
|
|
21
|
+
"axios": "^1.7.2",
|
|
22
|
+
"chalk": "^5.3.0",
|
|
23
|
+
"cli-table3": "^0.6.5",
|
|
24
|
+
"inquirer": "^9.2.23",
|
|
25
|
+
"slugify": "^1.6.6",
|
|
26
|
+
"superjson": "^2.2.1"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@oclif/prettier-config": "^0.2.1",
|
|
30
|
+
"@oclif/test": "^4",
|
|
31
|
+
"@types/chai": "^4",
|
|
32
|
+
"@types/inquirer": "9.0.7",
|
|
33
|
+
"@types/mocha": "^10",
|
|
34
|
+
"@types/node": "^18",
|
|
35
|
+
"chai": "^4",
|
|
36
|
+
"eslint": "^8",
|
|
37
|
+
"eslint-config-oclif": "^5",
|
|
38
|
+
"eslint-config-oclif-typescript": "^3",
|
|
39
|
+
"eslint-config-prettier": "^9",
|
|
40
|
+
"mocha": "^10",
|
|
41
|
+
"oclif": "^4",
|
|
42
|
+
"shx": "^0.3.3",
|
|
43
|
+
"ts-node": "^10",
|
|
44
|
+
"typescript": "^5"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=18.0.0"
|
|
48
|
+
},
|
|
49
|
+
"files": [
|
|
50
|
+
"/bin",
|
|
51
|
+
"/dist",
|
|
52
|
+
"/oclif.manifest.json"
|
|
53
|
+
],
|
|
54
|
+
"homepage": "https://github.com/Dokploy/cli",
|
|
55
|
+
"keywords": [
|
|
56
|
+
"oclif"
|
|
57
|
+
],
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"main": "dist/index.js",
|
|
60
|
+
"type": "module",
|
|
61
|
+
"oclif": {
|
|
62
|
+
"bin": "dokploy",
|
|
63
|
+
"dirname": "dokploy",
|
|
64
|
+
"commands": "./dist/commands",
|
|
65
|
+
"plugins": [
|
|
66
|
+
"@oclif/plugin-help",
|
|
67
|
+
"@oclif/plugin-plugins"
|
|
68
|
+
],
|
|
69
|
+
"topicSeparator": " ",
|
|
70
|
+
"topics": {
|
|
71
|
+
"hello": {
|
|
72
|
+
"description": "Say hello to the world and others"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"repository": "Dokploy/cli",
|
|
77
|
+
"scripts": {
|
|
78
|
+
"build": "shx rm -rf dist && tsc -b",
|
|
79
|
+
"lint": "eslint . --ext .ts",
|
|
80
|
+
"postpack": "shx rm -f oclif.manifest.json",
|
|
81
|
+
"posttest": "pnpm run lint",
|
|
82
|
+
"prepack": "oclif manifest && oclif readme",
|
|
83
|
+
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
84
|
+
"version": "oclif readme && git add README.md"
|
|
85
|
+
},
|
|
86
|
+
"types": "dist/index.d.ts"
|
|
87
|
+
}
|