From f23e9eb937a6bf74565af2cadce4f1a0591a5c67 Mon Sep 17 00:00:00 2001 From: Birger Schacht Date: Tue, 7 Nov 2023 14:46:26 +0100 Subject: [PATCH] docs: update README, now that apis-override-select2js is a dependency --- README.md | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index b2719ee96..489ad544a 100644 --- a/README.md +++ b/README.md @@ -86,24 +86,15 @@ To use the APIS framework in your application, add the following APIS modules to ### Dependencies -```shell -poetry add git+https://github.com/acdh-oeaw/apis-override-select2js#v0.1.0 -``` - -`apis_override_select2js` is a workaround for APIS' handling of autocomplete -forms. You will need it if you want to use autocomplete. Add it to your -`INSTALLED_APPS` and make sure it is listed at the beginning of the list, to -make sure the files shipped with it are served in precedence. - -```python -"apis_override_select2js" -``` - - -You will also need to add the following dependencies to +You will need to add the following dependencies to [`INSTALLED_APPS`](https://docs.djangoproject.com/en/4.2/ref/settings/#installed-apps): ```python +# `apis_override_select2js` is a workaround for APIS' handling of autocomplete +# forms. It should be listed at the beginning of the list, to make sure the +# files shipped with it are served in precedence. +"apis_override_select2js", + # ui stuff "crispy_forms", "django_filters",