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
78 lines (78 loc) · 2.58 KB
/
Copy pathheroku-cli.json
File metadata and controls
78 lines (78 loc) · 2.58 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
{
"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"
}
]
}, {
"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 ps"
}, {
"definition": "অ্যাপ এর লগ",
"code": "heroku logs"
}
]
}, {
"title": "এসএসএইচ ম্যানেজ",
"items": [
{
"definition": "কী অ্যাড করা",
"code": "heroku keys:add"
}, {
"definition": "কী রিমুভ করা",
"code": "heroku keys:remove কী-এর-নাম"
}, {
"definition": "সবগুলো কী লিস্ট করা",
"code": "heroku keys"
}
]
}
]
}