File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ https://django-mongodb-backend.readthedocs.io/en/latest/.
18
18
Use the version of ` django-mongodb-backend ` that corresponds to your version of
19
19
Django. For example, to get the latest compatible release for Django 5.1.x:
20
20
``` bash
21
- $ pip install --pre django-mongodb-backend==5.1.*
21
+ pip install --pre django-mongodb-backend==5.1.*
22
22
```
23
23
(Until the package is out of beta, you must use pip's ` --pre ` option.)
24
24
@@ -33,14 +33,14 @@ at the end of the template link corresponds to your version of Django.
33
33
34
34
You can check what version of Django you're using with:
35
35
``` bash
36
- $ django-admin --version
36
+ django-admin --version
37
37
```
38
38
39
39
The snippet below specifies ` 5.1.x.zip ` at the end of
40
40
the template url to get the template for any Django version matching 5.1:
41
41
42
42
``` bash
43
- $ django-admin startproject example --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/5.1.x.zip
43
+ django-admin startproject example --template https://github.com/mongodb-labs/django-mongodb-project/archive/refs/heads/5.1.x.zip
44
44
```
45
45
46
46
@@ -60,7 +60,7 @@ DATABASES = {
60
60
### Run the server
61
61
To verify that you installed Django MongoDB Backend and correctly configured your project, run the following command from your project root:
62
62
``` bash
63
- $ python manage.py runserver
63
+ python manage.py runserver
64
64
```
65
65
Then, visit http://127.0.0.1:8000/ . This page displays a "Congratulations!" message and an image of a rocket.
66
66
You can’t perform that action at this time.
0 commit comments