> For the complete documentation index, see [llms.txt](https://appsecurity.gitbook.io/devops/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://appsecurity.gitbook.io/devops/ppc/ppc-langs/backend/python/packages/web-frameworks/django/intro.md).

# Intro

Создать проект:

```
$ django-admin startproject djangoexample
$ cd djangoexample
$ ./manage.py startapp common
```

Как выглядит приложение на Django:

```python
from django.apps import AppConfig


class MyAppConfig(AppConfig):
   def ready(self):
      # Your code
      ...
```
