create new django app

Start by navigating to the directory where you want to create your new Django app. Then, execute the following command in your terminal:

django-admin startapp <app_name>

Replace <app_name> with the name you want to give to your new app. This command will create a new directory with the specified app name, along with the necessary files and folder structure for a Django app.

After running the command, you will have your new Django app ready to be customized and developed further.