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
- Click the
New Project
button - Enter the name of your project
- Click the
Create Project
button
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...