plural name django

  1. Open your terminal or command prompt.

  2. Navigate to the directory where your Django project is located.

  3. Run the command python manage.py startapp <app_name> to create a new app within your Django project.

  4. This will create a new directory with the specified app name, containing the necessary files and folders for your Django app.

  5. Next, you'll need to register the new app by adding it to the INSTALLED_APPS list in the settings.py file of your Django project.

  6. You can then begin defining models, views, URLs, and templates for your new app within the created directory.

  7. Remember to run python manage.py makemigrations and python manage.py migrate after making changes to your models in order to apply those changes to your database.

  8. Finally, don't forget to include the app's URLs in the main urls.py file of your Django project, so that the app's views can be accessed through the specified URLs.