Skip to content

Commit 67e1e9f

Browse files
committed
Remove bash prompt prefix in README to ease clipboard copying
1 parent 8a57a06 commit 67e1e9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ https://django-mongodb-backend.readthedocs.io/en/latest/.
1818
Use the version of `django-mongodb-backend` that corresponds to your version of
1919
Django. For example, to get the latest compatible release for Django 5.1.x:
2020
```bash
21-
$ pip install --pre django-mongodb-backend==5.1.*
21+
pip install --pre django-mongodb-backend==5.1.*
2222
```
2323
(Until the package is out of beta, you must use pip's `--pre` option.)
2424

@@ -33,14 +33,14 @@ at the end of the template link corresponds to your version of Django.
3333

3434
You can check what version of Django you're using with:
3535
```bash
36-
$ django-admin --version
36+
django-admin --version
3737
```
3838

3939
The snippet below specifies `5.1.x.zip` at the end of
4040
the template url to get the template for any Django version matching 5.1:
4141

4242
```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
4444
```
4545

4646

@@ -60,7 +60,7 @@ DATABASES = {
6060
### Run the server
6161
To verify that you installed Django MongoDB Backend and correctly configured your project, run the following command from your project root:
6262
```bash
63-
$ python manage.py runserver
63+
python manage.py runserver
6464
```
6565
Then, visit http://127.0.0.1:8000/. This page displays a "Congratulations!" message and an image of a rocket.
6666

0 commit comments

Comments
 (0)