Skip to content

Commit 6636f93

Browse files
authored
Update README.md
1 parent a61725f commit 6636f93

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22

33
This is the starter template for the Django-MongoDB Backend. In order to use, with your version of `django-mongodb-backend` and `django`:
44

5-
* Find you Django version.
5+
* Find your Django version.
66
* Based on your Django version, provide that in the link defined below.
77

8-
`django-admin startproject {{ project_name }} --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/{{ version }}.x.zip`
8+
## Create the Django Project
9+
From your shell, run the following command to create a new Django project replacing the `{{ project_name }}` and `{{ version }}` sections.
10+
11+
```bash
12+
django-admin startproject {{ project_name }} --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/{{ version }}.x.zip
13+
```
914

1015
Below is an example:
1116

12-
For a template that works with `django==5.0.*`
17+
For a project name `5_0_exmaple` that runs on `django==5.0.*`:
1318

14-
`django-admin startproject 5_0_example --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/5.0.x.zip`
19+
```bash
20+
django-admin startproject 5_0_example --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/5.0.x.zip
21+
```

0 commit comments

Comments
 (0)