File tree Expand file tree Collapse file tree 12 files changed +95
-69
lines changed
third-party-library-support Expand file tree Collapse file tree 12 files changed +95
-69
lines changed Original file line number Diff line number Diff line change 24
24
# Application definition
25
25
26
26
INSTALLED_APPS = [
27
- "django_mongodb_extensions.debug_toolbar. mongo_apps.MongoAdminConfig" ,
28
- "django_mongodb_extensions.debug_toolbar. mongo_apps.MongoAuthConfig" ,
29
- "django_mongodb_extensions.debug_toolbar. mongo_apps.MongoContentTypesConfig" ,
27
+ "django_mongodb_extensions.mongo_apps.MongoAdminConfig" ,
28
+ "django_mongodb_extensions.mongo_apps.MongoAuthConfig" ,
29
+ "django_mongodb_extensions.mongo_apps.MongoContentTypesConfig" ,
30
30
"django.contrib.sessions" ,
31
31
"django.contrib.messages" ,
32
32
"django.contrib.staticfiles" ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Table of Contents
21
21
:maxdepth: 2
22
22
23
23
installation/index
24
- third-party-library-support
24
+ third-party-library-support/index
25
25
supported-libraries/index
26
26
27
27
.. _`Django MongoDB Backend` : https://github.com/mongodb/django-mongodb-backend
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
Installation
2
2
============
3
3
4
+ Clone the repository
5
+ --------------------
4
6
5
- .. toctree ::
6
- clone-repository
7
- venv
8
- usage
7
+ ::
8
+
9
+ git clone https://github.com/mongodb-labs/django-mongodb-cli
10
+ cd django-mongodb-cli
11
+
12
+
13
+ Create a virtual environment
14
+ ----------------------------
15
+
16
+ ::
17
+
18
+ python -m venv .venv
19
+ source .venv/bin/activate
20
+
21
+
22
+ Install CLI
23
+ -----------
24
+
25
+ ::
26
+
27
+ python -m pip install -e .
28
+
29
+ Install development dependencies
30
+ --------------------------------
31
+
32
+ ::
33
+
34
+ dm repo clone -a
35
+
36
+ Usage
37
+ -----
38
+
39
+ .. code :: bash
40
+
41
+ $ dm --help
42
+ Usage: dm [OPTIONS] COMMAND [ARGS]...
43
+
44
+ Django MongoDB CLI
45
+
46
+ Options:
47
+ --help Show this message and exit.
48
+
49
+ Commands:
50
+ repo Run Django fork and third-party library tests.
51
+ startproject Run ` startproject` with custom templates.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,8 +3,11 @@ Django allauth
3
3
4
4
.. _django-allauth-results :
5
5
6
+ Test suite
7
+ ----------
8
+
6
9
Results
7
- -------
10
+ ~~~~~~~
8
11
9
12
Via ``dm repo test django-filter ``
10
13
@@ -17,7 +20,7 @@ Via ``dm repo test django-filter``
17
20
- `django-filter.txt <../_static/django-filter.txt >`_
18
21
19
22
Settings
20
- --------
23
+ ~~~~~~~~
21
24
22
25
Via ``dm repo test django-filter --show ``
23
26
@@ -78,7 +81,7 @@ Via ``dm repo test django-filter --show``
78
81
}
79
82
80
83
Tests
81
- -----
84
+ ~~~~~
82
85
83
86
Via ``dm repo test django-filter -l ``
84
87
@@ -209,3 +212,9 @@ Via ``dm repo test django-filter -l``
209
212
├── headless_only
210
213
├── login_required_mw
211
214
└── regular
215
+
216
+ Project examples
217
+ ----------------
218
+
219
+ Known issues
220
+ ------------
Original file line number Diff line number Diff line change 4
4
Supported libraries
5
5
===================
6
6
7
+ Overview
8
+ --------
9
+
7
10
|
8
11
9
12
+------------------------------------+-------------------------------------------------------------+-------------------------------+----------------------------------+-------------------------+
10
- | **Library ** | **Test suites ** | **Project examples ** | **Known limitations ** | **Notes ** |
13
+ | **Library ** | **Test suites ** | **Project examples ** | **Known issues ** | **Notes ** |
11
14
+------------------------------------+-------------------------------------------------------------+-------------------------------+----------------------------------+-------------------------+
12
15
| **django-allauth ** | :ref: `63% passing <django-allauth-results >` | | | |
13
16
+------------------------------------+-------------------------------------------------------------+-------------------------------+----------------------------------+-------------------------+
@@ -30,6 +33,9 @@ Supported libraries
30
33
| | | | | |
31
34
+------------------------------------+-------------------------------------------------------------+-------------------------------+----------------------------------+-------------------------+
32
35
36
+ Criteria
37
+ --------
38
+
33
39
.. toctree ::
34
40
django-allauth
35
41
django-debug-toolbar
Original file line number Diff line number Diff line change
1
+ Third party library support
2
+ ===========================
3
+
4
+ Definition
5
+ -----------
6
+
7
+ This is the criteria used to determine if a third party library is supported
8
+ by Django MongoDB Backend. It is not a guarantee that the library will
9
+ work without issues, just that these criteria have been met.
10
+
11
+ Criteria
12
+ --------
13
+
14
+ .. toctree ::
15
+ test-suites
16
+ project-examples
17
+ known-issues
Original file line number Diff line number Diff line change
1
+ .. _`known_issues` :
2
+
3
+ Known issues
4
+ ------------
You can’t perform that action at this time.
0 commit comments