├── .gitignore ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── config ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── recruitment ├── __init__.py ├── admin.py ├── application_services.py ├── apps.py ├── domain_services.py ├── entities.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── repositories.py ├── repository_interfaces.py ├── templates │ └── recruitment │ │ ├── add_next_interview_screening.html │ │ ├── apply_screening.html │ │ ├── index.html │ │ ├── screening.html │ │ ├── screenings.html │ │ └── start_from_pre_interview_screening.html ├── tests.py ├── urls.py └── views.py └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/manage.py -------------------------------------------------------------------------------- /recruitment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recruitment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/admin.py -------------------------------------------------------------------------------- /recruitment/application_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/application_services.py -------------------------------------------------------------------------------- /recruitment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/apps.py -------------------------------------------------------------------------------- /recruitment/domain_services.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recruitment/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/entities.py -------------------------------------------------------------------------------- /recruitment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/migrations/0001_initial.py -------------------------------------------------------------------------------- /recruitment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recruitment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/models.py -------------------------------------------------------------------------------- /recruitment/repositories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/repositories.py -------------------------------------------------------------------------------- /recruitment/repository_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/repository_interfaces.py -------------------------------------------------------------------------------- /recruitment/templates/recruitment/add_next_interview_screening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/templates/recruitment/add_next_interview_screening.html -------------------------------------------------------------------------------- /recruitment/templates/recruitment/apply_screening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/templates/recruitment/apply_screening.html -------------------------------------------------------------------------------- /recruitment/templates/recruitment/index.html: -------------------------------------------------------------------------------- 1 |

index.html

2 |

hello world

3 | -------------------------------------------------------------------------------- /recruitment/templates/recruitment/screening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/templates/recruitment/screening.html -------------------------------------------------------------------------------- /recruitment/templates/recruitment/screenings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/templates/recruitment/screenings.html -------------------------------------------------------------------------------- /recruitment/templates/recruitment/start_from_pre_interview_screening.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/templates/recruitment/start_from_pre_interview_screening.html -------------------------------------------------------------------------------- /recruitment/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/tests.py -------------------------------------------------------------------------------- /recruitment/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/urls.py -------------------------------------------------------------------------------- /recruitment/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/recruitment/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaiax/django-ddd-demo/HEAD/setup.cfg --------------------------------------------------------------------------------