From 09522fda730f5f8f8341146e7a87754bf5af7640 Mon Sep 17 00:00:00 2001 From: Jib Date: Fri, 31 Jan 2025 13:26:27 -0500 Subject: [PATCH 1/5] provide django version check guidance --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 17fc14a1..d24308e0 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,14 @@ $ pip install --pre django-mongodb-backend==5.1.* From your shell, run the following command to create a new Django project called `example` using our custom template. Make sure the zipfile referenced at the end of the template link corresponds to your -version of Django. The snippet below specifies `5.1.x.zip` at the end of +version of Django. + +You can check what version of Django you're using with: +```bash +pip show django +``` + +The snippet below specifies `5.1.x.zip` at the end of the template url to get the template for any Django version matching 5.1: ```bash From e7c892f260d51416b7e2418b0db62a958eab8187 Mon Sep 17 00:00:00 2001 From: Jib Date: Fri, 31 Jan 2025 13:27:20 -0500 Subject: [PATCH 2/5] consistency --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d24308e0..59c6a69f 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ version of Django. You can check what version of Django you're using with: ```bash -pip show django +$ pip show django ``` The snippet below specifies `5.1.x.zip` at the end of From d1babe4c659c9ef3f155011dd3a6caa539a770aa Mon Sep 17 00:00:00 2001 From: Jib Date: Fri, 31 Jan 2025 13:34:48 -0500 Subject: [PATCH 3/5] resolved comments --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 59c6a69f..4dbf3d9b 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,7 @@ $ pip install --pre django-mongodb-backend==5.1.* From your shell, run the following command to create a new Django project called `example` using our custom template. Make sure the zipfile referenced -at the end of the template link corresponds to your -version of Django. +at the end of the template link corresponds to your version of Django. You can check what version of Django you're using with: ```bash From da5c57f149b01bd949fbe34a0e46f6bbc2d8b361 Mon Sep 17 00:00:00 2001 From: Jib Date: Fri, 31 Jan 2025 13:47:57 -0500 Subject: [PATCH 4/5] django-admin --version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4dbf3d9b..442aab9d 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ at the end of the template link corresponds to your version of Django. You can check what version of Django you're using with: ```bash -$ pip show django +$ django-admin --version ``` The snippet below specifies `5.1.x.zip` at the end of From c12cbfbd99f9e0da5da0661bdae560c9e2af9300 Mon Sep 17 00:00:00 2001 From: Jib Date: Mon, 3 Feb 2025 13:49:41 -0500 Subject: [PATCH 5/5] format fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 442aab9d..d7dc3d69 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ $ pip install --pre django-mongodb-backend==5.1.* From your shell, run the following command to create a new Django project called `example` using our custom template. Make sure the zipfile referenced -at the end of the template link corresponds to your version of Django. +at the end of the template link corresponds to your version of Django. You can check what version of Django you're using with: ```bash