Write the Django command to start a new app named ‘users’ in an existing project?
Answers
Answered by
1
Answer:
please turn off the cellphone
Answered by
0
Django command to start a new app:
python manage.py startapp users
Django management commands:
These commands are used to perform complex repetitive tasks. It uses one keyword instruction to perform a task. This uses python logic to fulfil an action.
The above command is explained below:
- The command line "python" is used to inform that the script of the python is used here.
- The command line "manage.py" is used to invoke the Django commands through the script.
- The command line "startapp" inform the compiler that a new application is initiated.
- The "users" in the command line defines the name of the application.
Similar questions