Update Django ADR based on feedback

This commit is contained in:
Seamus Johnston 2022-08-11 09:01:28 -05:00
parent 80bebda052
commit 5d1c5b86c5
No known key found for this signature in database
GPG key ID: 2F21225985069105

View file

@ -8,14 +8,14 @@ Accepted
## Context
The [Federal Audit Clearinghouse](https://github.com/GSA-TTS/FAC) project is a similar project to ours, from which we are taking many examples for reuse. FAC uses Django.
Django is a web framework based on Python that has been in active development since 2005.
It follows a very standard MVC architecture (made popular by Ruby on Rails), although in Django parlance, a “view” is a controller (whereas the views are “templates”).
It comes with a robust object relational mapper for database access and includes a built-in admin interface suitable for simple use cases.
The [Federal Audit Clearinghouse](https://github.com/GSA-TTS/FAC) project is a similar project to ours, from which we are taking many examples for reuse. FAC uses Django.
Numerous other web frameworks exist in many languages, such as Ruby, PHP, Perl, Go, Elixir, etc. Other web frameworks exist in Python, such as Twisted and Flask.
## Decision