From 0e1bd183edc0acfa863927cd8f5fd1741bb6de5a Mon Sep 17 00:00:00 2001 From: Rebecca Graber Date: Wed, 1 Mar 2023 09:27:38 -0500 Subject: [PATCH] docs: add recommendation for ADR --- oeps/best-practices/oep-0049-django-app-patterns.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/oeps/best-practices/oep-0049-django-app-patterns.rst b/oeps/best-practices/oep-0049-django-app-patterns.rst index e0be4434e..34f319383 100644 --- a/oeps/best-practices/oep-0049-django-app-patterns.rst +++ b/oeps/best-practices/oep-0049-django-app-patterns.rst @@ -267,6 +267,11 @@ Do note that even if you expose your tasks through ``api.py`` to be used by othe still be configured with the ``tasks`` import name, as the celery identifier for your task (as set by the celery decorator) is based off the original file. +docs/decisions/0001-purpose-of-this-repo.rst or 0001-purpose-of-this-app +======================================================================== + +This should be an architectural decision record (ADR) describing the decision behind adding the app. Future ADRs should also be placed in this directory. + Consequences ************ @@ -279,6 +284,7 @@ Change History ========== * Changed type from "Architecture" to "Best Practice" +* Added section for an ADR justifying the new app 2021-04-23 ==========