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