-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.json
130 lines (130 loc) · 4.53 KB
/
helper.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[
{
"title": "Docker Up",
"description": "docker-compose up -d",
"command": "docker-compose up -d"
},
{
"title": "Docker Down",
"description": "docker-compose down",
"command": "docker-compose down"
},
{
"title": "Docker PS",
"description": "docker ps --format '...'",
"command": "docker ps --format 'table {{.Names}} {{.ID}} {{.Size}} {{.Status}}'"
},
{
"title": "Docker Inspect",
"description": "docker inspect --format='...' $(docker ps -q)",
"command": "docker inspect --format='{{.Name}} :: {{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $(docker ps -q)"
},
{
"title": "Docker Prune",
"description": "docker volume prune -f",
"command": "docker volume prune -f"
},
{
"type": "section"
},
{
"title": "ece-docker",
"description": "./vendor/bin/ece-docker",
"command": "./vendor/bin/ece-docker"
},
{
"title": "glist",
"description": "git diff-tree --no-commit-id --name-only -r",
"command": "git diff-tree --no-commit-id --name-only -r"
},
{
"title": "glog",
"description": "git log --follow -p",
"command": "git log --follow -p"
},
{
"title": "m1bash",
"description": "docker exec -it mageone_web /bin/bash",
"command": "docker exec -it mageone_web /bin/bash"
},
{
"title": "m1bashdb",
"description": "docker exec -it mageone_mysql /bin/bash",
"command": "docker exec -it mageone_mysql /bin/bash"
},
{
"title": "m1log",
"description": "tail -f -n 0 ... | grep -Ev (simplexml|...)",
"command": "tail -f -n 0 www/var/log/exception.log logs/error.log www/var/log/system.log | grep -Ev '(simplexml|SimpleXMLElement|implements Countable)'"
},
{
"title": "m2bash",
"description": "bin/magento-docker bash",
"command": "bin/magento-docker bash"
},
{
"title": "m2bashdb",
"description": "docker exec -it shark-gaming-systems-a-s_db_1 bin/bash",
"command": "docker exec -it shark-gaming-systems-a-s_db_1 bin/bash"
},
{
"title": "mbuild",
"description": "docker-compose run --rm build cloud-build",
"command": "docker-compose run --rm build cloud-build"
},
{
"title": "mc",
"description": "magento-cloud",
"command": "magento-cloud"
},
{
"title": "mdeploy",
"description": "docker-compose run --rm deploy cloud-deploy",
"command": "docker-compose run --rm deploy cloud-deploy"
},
{
"title": "mgc",
"description": "magento-cloud",
"command": "magento-cloud"
},
{
"title": "migrate",
"description": "sudo bin/magento migrate:data ../app/code/Vendor/Migration/etc/1.9.4.5/config.xml",
"command": "sudo bin/magento migrate:data /home/nurgiel/Desktop/shark-gaming-systems-a-s/app/code/Vendor/Migration/etc/1.9.4.5/config.xml"
},
{
"title": "sshintegration",
"description": "ssh hvyivtycpbcz2-integration-5ojmyuq--mymagento@ssh.eu-3.magento.cloud",
"command": "ssh hvyivtycpbcz2-integration-5ojmyuq--mymagento@ssh.eu-3.magento.cloud"
},
{
"title": "sshintegration2",
"description": "ssh hvyivtycpbcz2-integration2-hohc4oi--mymagento@ssh.eu-3.magento.cloud",
"command": "ssh hvyivtycpbcz2-integration2-hohc4oi--mymagento@ssh.eu-3.magento.cloud"
},
{
"title": "sshm1prod",
"description": "ssh [email protected] -i ~/.ssh/id_rsa -p 15873",
"command": "ssh [email protected] -i ~/.ssh/id_rsa -p 15873"
},
{
"title": "sshm1staging",
"description": "ssh [email protected] -i ~/.ssh/id_rsa",
"command": "ssh [email protected] -i ~/.ssh/id_rsa"
},
{
"title": "sshprod",
"description": "ssh [email protected]",
"command": "ssh [email protected]"
},
{
"title": "sshstaging",
"description": "ssh [email protected]",
"command": "ssh [email protected]"
},
{
"title": "unstage",
"description": "git reset --soft HEAD~1",
"command": "git reset --soft HEAD~1"
}
]