Metadata-Version: 2.1
Name: pdm-django
Version: 0.2.0
Summary: pdm shortcuts for Django projects
License: MIT
Author-email: Paul Bailey <paul@neutron.studio>
Requires-Python: >=3.7
Project-URL: homepage, https://github.com/neutron-sync/pdm-django
Description-Content-Type: text/markdown

# pdm-django: Django shortcuts for PDM

## Install

`pdm plugin add pdm-django`

## Usage

### manage.py

Example: `pdm manage runserver`

### django-admin

Example: `pdm django-admin startproject narf`

## Configuring .env

pdm-django inherits from the `pdm run` command, so if you would like to load a dotenv file, use the same notation in your `pyproject.toml` file.

```toml
[tool.pdm.scripts]
_.env_file = ".env"
```

