forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheroku-cli.json
More file actions
152 lines (152 loc) · 5.96 KB
/
Copy pathheroku-cli.json
File metadata and controls
152 lines (152 loc) · 5.96 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"id": "heroku-cli",
"title": "হিরোকো কমান্ড লাইন",
"slug": "heroku-cli",
"description": "হিরোকো(heroku) কমান্ড লাইনের হেল্প গাইড",
"colorPref": "#645fa1",
"contents": [{
"title": "সাধারণ",
"items": [{
"definition": "কমান্ড লাইনের ভার্শন",
"code": "heroku --version"
},
{
"definition": "কমান্ড লাইন আপডেট",
"code": "heroku update"
},
{
"definition": "এক্সিটিউবেল লোকেশন",
"code": "which heroku"
},
{
"definition": "সাহায্য",
"code": "heroku help"
},
{
"definition": "নির্দিষ্ট কোনো কমান্ড এর সাহায্য",
"code": "heroku help কমান্ড এর নাম"
},
{
"definition": "ডাইনোস রিস্টার্ট",
"code": "heroku restart"
},
{
"definition": "লগিন করা সদস্যের নাম",
"code": "heroku whoami"
}
]
},
{
"title": "শুরু করা",
"items": [{
"definition": "লগিন",
"code": "heroku login"
},
{
"definition": "অ্যাপ তৈরী",
"code": "heroku create নাম"
},
{
"definition": "অ্যাপ নামকরণ",
"code": "heroku apps:rename নতুন-নাম"
},
{
"definition": "অ্যাপ ডিপ্লয়",
"code": "git push heroku master"
},
{
"definition": "অ্যাপ ব্রাউজারে ওপেন",
"code": "heroku open"
}
]
},
{
"title": "তথ্য",
"items": [{
"definition": "অ্যাপ সম্পর্কে তথ্য",
"code": "heroku info"
},
{
"definition": "অ্যাপ কনফিগ",
"code": "heroku config"
},
{
"definition": "নির্দিষ্ট কনফিগ ভেরিয়েবলের মান",
"code": "heroku config:get ভেরিয়েবলের নাম"
},
{
"definition": "অ্যাপ এর অবস্থা",
"code": "heroku ps"
},
{
"definition": "অ্যাপ এর লগ",
"code": "heroku logs"
}
]
},
{
"title": "এসএসএইচ ম্যানেজ",
"items": [{
"definition": "কী অ্যাড করা",
"code": "heroku keys:add"
},
{
"definition": "কী রিমুভ করা",
"code": "heroku keys:remove কী-এর-নাম"
},
{
"definition": "সবগুলো কী লিস্ট করা",
"code": "heroku keys"
}
]
},
{
"title": "ডোমেইন ম্যানেজ",
"items": [{
"definition": "ডোমেইন অ্যাড করা",
"code": "heroku domains:add ডোমেইন-এর-নাম"
},
{
"definition": "ডোমেইন রিমুভ করা",
"code": "heroku domains:remove ডোমেইন-এর-নাম"
},
{
"definition": "সবগুলো ডোমেইন রিমুভ করা",
"code": "heroku domains:clear"
}
]
},
{
"title": "এডোন্স",
"items": [{
"definition": "এপ্লিকেশনে যুক্ত সকল এডোন্স",
"code": "heroku addons"
},
{
"definition": "নতুন এডোন্স যুক্ত করা",
"code": "heroku addons:create SERVICE:PLAN"
},
{
"definition": "এডোন্স বাদ দেয়া",
"code": "heroku addons:destroy এডোন্স এর নাম "
}
]
},
{
"title": "ডাটাবেইজ ম্যানেজ",
"items": [{
"definition": "ডাটাবেইজ তৈরি",
"code": "heroku addons:create heroku-postgresql:hobby-dev"
},
{
"definition": "ডাটাবেইজ সম্পর্কে তথ্য",
"code": "heroku pg:info"
},
{
"definition": "ডাটাবেইজ কানেকশান এর তথ্য",
"code": "heroku pg:credentials:url"
}
]
}
]
}