This is a basic template Django project using the latest template feature introduced in PDM 2.8.0.
$ pdm init djangoOr create a new project at the given path:
$ pdm init -p django_project djangoVisit https://localhost:8000 to see the welcome page.
Create a new app:
$ pdm run manage.py startapp <app_name>Migrate DB:
$ pdm migrateStart development server:
$ pdm startCall other manage.py commands:
$ pdm run manage.py <command> [options]This project is licensed under the terms of the MIT license.