Skip to content

Commit fca267d

Browse files
author
Sabbir Ahmed
authored
Merge pull request #624 from Rafat97/develop
👍 added `Django` Command
2 parents 8e6f2cc + ed9e89b commit fca267d

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

data/django.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,25 @@
8282
"definition": "প্রোজেক্ট তৈরী করা",
8383
"code": "django-admin startproject <project_name>"
8484
},
85+
{
86+
"definition": "ব্যবহারের তথ্য এবং প্রতিটি অ্যাপ্লিকেশন দ্বারা প্রদত্ত কমান্ডের একটি তালিকা প্রদর্শন করে",
87+
"code": "python manage.py help"
88+
},
8589
{
8690
"definition": "ডেভেলপমেন্ট সার্ভার চালু করা",
8791
"code": "python manage.py runserver"
92+
},
93+
{
94+
"definition": "জ্যাঙ্গো প্রোজেক্ট পরীক্ষা করে",
95+
"code": "python manage.py check"
96+
},
97+
{
98+
"definition": "জ্যাঙ্গো প্রোজেক্ট ইন্টারেক্টিভ ইন্টারপ্রেটার",
99+
"code": "python manage.py shell"
100+
},
101+
{
102+
"definition": "জ্যাঙ্গো প্রোজেক্ট মেয়াদোত্তীর্ণ সেশনগুলি পরিষ্কার করে",
103+
"code": "python manage.py clearsessions"
88104
}
89105
]
90106
},
@@ -110,11 +126,15 @@
110126
]
111127
},
112128
{
113-
"title": "এডমিন",
129+
"title": "জ্যাঙ্গো অথ",
114130
"items": [
115131
{
116132
"definition": "সুপার ইউজার তৈরী করা",
117133
"code": "python manage.py createsuperuser"
134+
},
135+
{
136+
"definition": "পাসওয়ার্ড পরিবর্তন করা",
137+
"code": "python manage.py changepassword <username>"
118138
}
119139
]
120140
},

0 commit comments

Comments
 (0)