Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.js
More file actions
Latest commit
74 lines (72 loc) · 3.64 KB
/
Copy pathconst.js
File metadata and controls
74 lines (72 loc) · 3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
constCUNDERLINE='\x1b[4m'
constCRESET='\x1b[0m'
constPLAN_DEFINITIONS={
"BASIC": {
"Index": 0,
"Version": "Community",
"Description": "FREE membership with community access to development resources",
"Subscription": 0
},
"PREMIUM": {
"Index": 1,
"Version": "Enterprise",
"Description": "10$ per month with unlimited access to productionr ready resources",
"Subscription": 10
}
}
constAVAILABLE_COMMANDS=[
{name: "init",desc: "setup project with AWS programmatic access",options: [
{name: "help",desc: "display help for `init` command"}
]},
{name: "list",desc: "list all deployemnts as snapshot to your cloud",options: [
{name: "help",desc: "display help for `list` command"}
]},
{name: "create",desc: "create a deployment `folder` from templates",options: [
{name: "help",desc: "display help for `create` command"},
{name: "name",desc: "another alterative deployment folder name"},
{name: "template",desc: "a simplify `template` or a https://name/template.yaml"}
]},
{name: "deploy",desc: "push a deployment `folder` to AWS cloud",options: [
{name: "help",desc: "display help for `deploy` command"},
{name: "stack",desc: "explicit as a stack for this deployment"},
{name: "function",desc: "explicit as a function for this deployment"},
{name: "parameters",desc: "stack parameters in JSON"},
{name: "config",desc: "explicit the Configuration for `function` deployment"},
{name: "policy",desc: "explicit the IAM policy for `function` deployment"},
{name: "role",desc: "explicit the IAM role for `function` deployment"},
{name: "src",desc: "specific the `source` folder for `function` deployment"},
{name: "layer",desc: "deploy the `source` folder as a layer"},
{name: "publish",desc: "publish new a version for `function`"},
{name: "update",desc: "force update code for `function`"},
{name: "region",desc: "selected region to deploy"},
{name: "dotenv",desc: "another alternative env"},
{name: "location",desc: "the root folder of this deployment"},
{name: "headless",desc: "without prompt when deploying"}
]},
{name: "destroy",desc: "cleanup your cloud deployment resource",options: [
{name: "help",desc: "display help for `destroy` command"},
{name: "stack",desc: "explicit as a stack for this deployment"},
{name: "function",desc: "explicit as a function for this deployment"}
]},
{name: "regiter",desc: "create an account to get support",options: [
{name: "help",desc: "display help for `register` command"}
]},
{name: "login",desc: "sign in as a registered user",options: [
{name: "help",desc: "display help for `login` command"}
]},
{name: "logout",desc: `sign out your current session (${CUNDERLINE}require login${CRESET})`,options: [
{name: "help",desc: "display help for `logout` command"}
]},
{name: "upgrade",desc: `upgrade your subscription plan (${CUNDERLINE}require login${CRESET})`,options: [
{name: "help",desc: "display help for `upgrade` command"}
]},
{name: "support",desc: `get support from our team (${CUNDERLINE}require login${CRESET})`,options: [
{name: "help",desc: "display help for `support` command"}
]}
]
constALLOWED_COMANDS=["INIT","LOGIN","REGISTER","CREATE","DEPLOY","DESTROY","LIST"]
module.exports={
ALLOWED_COMANDS,
AVAILABLE_COMMANDS,
PLAN_DEFINITIONS
}