Complete the code to create a new Django project named 'myproject'.
django-admin [1] myprojectThe correct command to create a new Django project is startproject. This sets up the basic files and folders needed.
Complete the command to run the Django development server inside the project directory.
python manage.py [1]The command runserver starts the Django development server so you can see your project in a browser.
Fix the error in the command to create a Django app named 'blog'.
python manage.py [1] blogThe correct command to create a new app inside a Django project is startapp.
Fill both blanks to create a Django project named 'shop' and then navigate into its directory.
django-admin [1] shop cd [2]
First, use startproject to create the project. Then, use cd shop to enter the project folder.
Fill all three blanks to create a Django app named 'store', add it to INSTALLED_APPS, and run migrations.
python manage.py [1] store # In settings.py add 'store' to [2] python manage.py [3]
Use startapp to create the app, add 'store' to INSTALLED_APPS in settings.py, then run migrate to apply database changes.