indraq_cli 1.9.1 → 2.0.0
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/LICENSE +21 -21
- package/README.md +1043 -1517
- package/cloud-api/.env +6 -0
- package/cloud-api/.env.example +14 -14
- package/cloud-api/README.md +145 -141
- package/cloud-api/package.json +29 -29
- package/cloud-api/sql/001_init.sql +8 -8
- package/cloud-api/sql/002_user_providers_and_project_resources.sql +40 -40
- package/cloud-api/sql/003_environment_infrastructure.sql +19 -19
- package/cloud-api/sql/004_managed_aws_credentials.sql +20 -20
- package/cloud-api/sql/005_project_members_and_resource_grants.sql +22 -22
- package/cloud-api/sql/006_catalog_identity_password_security.sql +96 -96
- package/cloud-api/sql/007_aws_access_key_rotation.sql +16 -16
- package/cloud-api/src/index.ts +1329 -1254
- package/cloud-api/tsconfig.json +18 -18
- package/dist/cli/help-content.d.ts.map +1 -1
- package/dist/cli/help-content.js +254 -251
- package/dist/cli/help-content.js.map +1 -1
- package/dist/modules/access/commands/access.command.d.ts +19 -0
- package/dist/modules/access/commands/access.command.d.ts.map +1 -1
- package/dist/modules/access/commands/access.command.js +57 -46
- package/dist/modules/access/commands/access.command.js.map +1 -1
- package/dist/modules/cloud/commands/cloud.command.d.ts.map +1 -1
- package/dist/modules/cloud/commands/cloud.command.js +18 -2
- package/dist/modules/cloud/commands/cloud.command.js.map +1 -1
- package/dist/modules/cloud/config/cloud-config.d.ts +1 -1
- package/dist/modules/cloud/config/cloud-config.js +1 -1
- package/dist/modules/cloud/services/cloud-jenkins.service.d.ts +13 -1
- package/dist/modules/cloud/services/cloud-jenkins.service.d.ts.map +1 -1
- package/dist/modules/cloud/services/cloud-jenkins.service.js +173 -77
- package/dist/modules/cloud/services/cloud-jenkins.service.js.map +1 -1
- package/dist/modules/cloud/services/managed-aws-credential.service.d.ts.map +1 -1
- package/dist/modules/cloud/services/managed-aws-credential.service.js +11 -4
- package/dist/modules/cloud/services/managed-aws-credential.service.js.map +1 -1
- package/dist/modules/jenkins/commands/admin.command.d.ts +3 -0
- package/dist/modules/jenkins/commands/admin.command.d.ts.map +1 -1
- package/dist/modules/jenkins/commands/admin.command.js +91 -1
- package/dist/modules/jenkins/commands/admin.command.js.map +1 -1
- package/dist/modules/jenkins/index.d.ts.map +1 -1
- package/dist/modules/jenkins/index.js +3 -0
- package/dist/modules/jenkins/index.js.map +1 -1
- package/dist/modules/scaffold/services/docker-template.service.js +95 -95
- package/dist/modules/users/commands/user.command.d.ts.map +1 -1
- package/dist/modules/users/commands/user.command.js +290 -44
- package/dist/modules/users/commands/user.command.js.map +1 -1
- package/dist/modules/users/providers/aws-user.provider.d.ts.map +1 -1
- package/dist/modules/users/providers/aws-user.provider.js +9 -2
- package/dist/modules/users/providers/aws-user.provider.js.map +1 -1
- package/dist/modules/users/providers/jenkins-user.provider.d.ts +11 -4
- package/dist/modules/users/providers/jenkins-user.provider.d.ts.map +1 -1
- package/dist/modules/users/providers/jenkins-user.provider.js +174 -72
- package/dist/modules/users/providers/jenkins-user.provider.js.map +1 -1
- package/dist/modules/users/providers/npm-user.provider.d.ts.map +1 -1
- package/dist/modules/users/providers/npm-user.provider.js +3 -1
- package/dist/modules/users/providers/npm-user.provider.js.map +1 -1
- package/dist/shared/config/config-files.js +7 -7
- package/docs/ARCHITECTURE.md +29 -29
- package/docs/CREATE-DEPLOYMENT-reference.groovy +1105 -1105
- package/package.json +77 -76
- package/templates/jenkins/CREATE-DEPLOYMENT.groovy +1105 -1105
- package/templates/jenkins/Jenkinsfile-Mobile-App +759 -759
- package/cloud-api/.dockerignore +0 -18
- package/cloud-api/Dockerfile +0 -19
- package/cloud-api/package-lock.json +0 -2250
package/package.json
CHANGED
|
@@ -1,76 +1,77 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "indraq_cli",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "IndraQ cloud-first CLI for project lifecycle, organization access, Route53/NPM/Jenkins/AWS orchestration, Docker and deployments",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"indraq": "dist/index.js"
|
|
8
|
-
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "tsc",
|
|
11
|
-
"prepack": "npm run build",
|
|
12
|
-
"start": "node dist/index.js",
|
|
13
|
-
"dev": "ts-node src/index.ts",
|
|
14
|
-
"watch": "nodemon --exec ts-node src/index.ts",
|
|
15
|
-
"build:cloud": "npm --prefix cloud-api install --no-audit --no-fund && npm --prefix cloud-api run build",
|
|
16
|
-
"test": "npm run test:cloud-endpoint && npm run test:user-credentials && npm run test:infrastructure && npm run test:platform && npm run test:project-access && npm run test:project-create && npm run test:jenkins-crumb && npm run test:jenkins-port && npm run test:prebuild && npm run test:docker-context && npm run test:identity-security",
|
|
17
|
-
"test:user-credentials": "node tests/cloud-user-credential-regression.cjs",
|
|
18
|
-
"test:prebuild": "node tests/prebuild-cloud-regression.cjs",
|
|
19
|
-
"test:jenkins-port": "node tests/jenkins-port-regression.cjs",
|
|
20
|
-
"test:jenkins-crumb": "node tests/jenkins-crumb-regression.cjs",
|
|
21
|
-
"test:infrastructure": "node tests/infrastructure-hardening-regression.cjs",
|
|
22
|
-
"test:platform": "node tests/platform-hardening-regression.cjs",
|
|
23
|
-
"test:project-access": "node tests/project-access-regression.cjs",
|
|
24
|
-
"test:project-create": "node tests/project-create-regression.cjs",
|
|
25
|
-
"test:docker-context": "node tests/docker-context-regression.cjs",
|
|
26
|
-
"test:cloud-endpoint": "node tests/cloud-endpoint-regression.cjs",
|
|
27
|
-
"test:identity-security": "node tests/identity-security-regression.cjs"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"@types/
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "indraq_cli",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "IndraQ cloud-first CLI for project lifecycle, organization access, Route53/NPM/Jenkins/AWS orchestration, Docker and deployments",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"indraq": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"prepack": "npm run build",
|
|
12
|
+
"start": "node dist/index.js",
|
|
13
|
+
"dev": "ts-node src/index.ts",
|
|
14
|
+
"watch": "nodemon --exec ts-node src/index.ts",
|
|
15
|
+
"build:cloud": "npm --prefix cloud-api install --no-audit --no-fund && npm --prefix cloud-api run build",
|
|
16
|
+
"test": "npm run test:cloud-endpoint && npm run test:user-credentials && npm run test:infrastructure && npm run test:platform && npm run test:project-access && npm run test:project-create && npm run test:jenkins-crumb && npm run test:jenkins-port && npm run test:prebuild && npm run test:docker-context && npm run test:identity-security && npm run test:user-lifecycle-jenkins && npm run test:v2-lifecycle",
|
|
17
|
+
"test:user-credentials": "node tests/cloud-user-credential-regression.cjs",
|
|
18
|
+
"test:prebuild": "node tests/prebuild-cloud-regression.cjs",
|
|
19
|
+
"test:jenkins-port": "node tests/jenkins-port-regression.cjs",
|
|
20
|
+
"test:jenkins-crumb": "node tests/jenkins-crumb-regression.cjs",
|
|
21
|
+
"test:infrastructure": "node tests/infrastructure-hardening-regression.cjs",
|
|
22
|
+
"test:platform": "node tests/platform-hardening-regression.cjs",
|
|
23
|
+
"test:project-access": "node tests/project-access-regression.cjs",
|
|
24
|
+
"test:project-create": "node tests/project-create-regression.cjs",
|
|
25
|
+
"test:docker-context": "node tests/docker-context-regression.cjs",
|
|
26
|
+
"test:cloud-endpoint": "node tests/cloud-endpoint-regression.cjs",
|
|
27
|
+
"test:identity-security": "node tests/identity-security-regression.cjs",
|
|
28
|
+
"test:user-lifecycle-jenkins": "node tests/user-lifecycle-jenkins-regression.cjs",
|
|
29
|
+
"test:v2-lifecycle": "node tests/v2-user-project-lifecycle-regression.cjs"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"indraq",
|
|
33
|
+
"cli",
|
|
34
|
+
"docker",
|
|
35
|
+
"ghcr",
|
|
36
|
+
"jenkins",
|
|
37
|
+
"deployment",
|
|
38
|
+
"devops",
|
|
39
|
+
"automation",
|
|
40
|
+
"mobile",
|
|
41
|
+
"react-native",
|
|
42
|
+
"expo",
|
|
43
|
+
"android"
|
|
44
|
+
],
|
|
45
|
+
"author": "IndraQ Innovations",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@aws-sdk/client-iam": "^3.1123.0",
|
|
49
|
+
"@aws-sdk/client-route-53": "^3.1123.0",
|
|
50
|
+
"axios": "^1.6.0",
|
|
51
|
+
"chalk": "^4.1.2",
|
|
52
|
+
"commander": "^9.5.0",
|
|
53
|
+
"inquirer": "^8.2.5"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@types/inquirer": "^8.2.10",
|
|
57
|
+
"@types/node": "^24.13.3",
|
|
58
|
+
"nodemon": "^3.0.2",
|
|
59
|
+
"ts-node": "^10.9.2",
|
|
60
|
+
"typescript": "^5.9.3"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=22.0.0"
|
|
64
|
+
},
|
|
65
|
+
"files": [
|
|
66
|
+
"dist",
|
|
67
|
+
"README.md",
|
|
68
|
+
"LICENSE",
|
|
69
|
+
"docs",
|
|
70
|
+
"templates/jenkins",
|
|
71
|
+
"cloud-api"
|
|
72
|
+
],
|
|
73
|
+
"publishConfig": {
|
|
74
|
+
"access": "public",
|
|
75
|
+
"registry": "https://registry.npmjs.org/"
|
|
76
|
+
}
|
|
77
|
+
}
|