Skip to main content

Project

A project in django compose also represent a single Django project.

The name of your project is expected to conform to valid project name as in the official Django documentation.

Creating a new project

  1. Click the New Project button
  2. Enter the name of your project
  3. Click the Create Project button

Create New Project

Project Configurations

You can configure what you want in your Django project to be generated

  • enable_api: denotes that our project is Restful API project using Django REST Framework.
    • include_simple_jwt: sets up Simple JWT for our DRF API project Learn more.
  • enable_web: tells the generator that our project is a Web application (default).
Tip

You can enable both WEB and API for a single project but either of this options needs to be configured.

  • include_docker: includes docker configuration for our project.
  • include_django_filter: setups functionality allowing users to declaratively add dynamic QuerySet filtering from URL parameters using Django Filter.
  • And much more coming soon...