{ "id": "django", "title": "জ্যাঙ্গো", "slug": "django", "description": "জ্যাঙ্গো এর চিটশিট", "colorPref": "#6cc24a", "contents": [ { "title": "pipenv ইনিশিয়ালাইজেশন", "items": [ { "definition": "প্রোজেক্ট ডিরেক্টরী তৈরী করা", "code": "mkdir " }, { "definition": "প্রোজেক্ট ডিরেক্টরীতে নেভিগেইট করা", "code": "cd " }, { "definition": "pipenv ইনিশিয়ালাইজ করা", "code": "pipenv install" }, { "definition": "pipenv শেল চালু করা", "code": "pipenv shell" }, { "definition": "django ইন্সটল করা", "code": "pipenv install django" }, { "definition": "যেকোনো প্যাকেজ ডিপেন্ডেন্সী ইন্সটল করা", "code": "pipenv install " } ] }, { "title": "প্রোজেক্ট", "items": [ { "definition": "প্রোজেক্ট তৈরী করা", "code": "django-admin startproject " }, { "definition": "ডেভলপমেন্ট সার্ভার চালু করা", "code": "python manage.py runserver" } ] }, { "title": "অ্যাপ", "items": [ { "definition": "অ্যাপ তৈরী করা", "code": "python manage.py startapp " }, { "definition": "মাইগ্রেশনের জন্য", "code": "python manage.py migrate" } ] }, { "title": "এডমিন", "items": [ { "definition": "সুপার ইউজার তৈরী করা", "code": "python manage.py createsuperuser" } ] } ] }