next.dj 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- next_dj-0.1.0/.gitignore +132 -0
- next_dj-0.1.0/CONTRIBUTING.md +1277 -0
- next_dj-0.1.0/LICENSE +21 -0
- next_dj-0.1.0/PKG-INFO +42 -0
- next_dj-0.1.0/README.md +20 -0
- next_dj-0.1.0/next/__init__.py +19 -0
- next_dj-0.1.0/next/apps.py +13 -0
- next_dj-0.1.0/next/checks.py +1113 -0
- next_dj-0.1.0/next/pages.py +747 -0
- next_dj-0.1.0/next/urls.py +468 -0
- next_dj-0.1.0/pyproject.toml +229 -0
next_dj-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
# django
|
|
2
|
+
*.log
|
|
3
|
+
*.pot
|
|
4
|
+
*.pyc
|
|
5
|
+
__pycache__
|
|
6
|
+
db.sqlite3
|
|
7
|
+
media
|
|
8
|
+
|
|
9
|
+
# backup files
|
|
10
|
+
*.bak
|
|
11
|
+
|
|
12
|
+
# user-specific stuff
|
|
13
|
+
.idea/**/workspace.xml
|
|
14
|
+
.idea/**/tasks.xml
|
|
15
|
+
.idea/**/usage.statistics.xml
|
|
16
|
+
.idea/**/dictionaries
|
|
17
|
+
.idea/**/shelf
|
|
18
|
+
|
|
19
|
+
# AWS user-specific
|
|
20
|
+
.idea/**/aws.xml
|
|
21
|
+
|
|
22
|
+
# generated files
|
|
23
|
+
.idea/**/contentModel.xml
|
|
24
|
+
|
|
25
|
+
# sensitive or high-churn files
|
|
26
|
+
.idea/**/dataSources/
|
|
27
|
+
.idea/**/dataSources.ids
|
|
28
|
+
.idea/**/dataSources.local.xml
|
|
29
|
+
.idea/**/sqlDataSources.xml
|
|
30
|
+
.idea/**/dynamic.xml
|
|
31
|
+
.idea/**/uiDesigner.xml
|
|
32
|
+
.idea/**/dbnavigator.xml
|
|
33
|
+
|
|
34
|
+
# gradle
|
|
35
|
+
.idea/**/gradle.xml
|
|
36
|
+
.idea/**/libraries
|
|
37
|
+
|
|
38
|
+
# file-based project format
|
|
39
|
+
*.iws
|
|
40
|
+
|
|
41
|
+
# intelliJ
|
|
42
|
+
out/
|
|
43
|
+
|
|
44
|
+
# jira plugin
|
|
45
|
+
atlassian-ide-plugin.xml
|
|
46
|
+
|
|
47
|
+
# python #
|
|
48
|
+
*.py[cod]
|
|
49
|
+
*$py.class
|
|
50
|
+
|
|
51
|
+
# distribution / packaging
|
|
52
|
+
.Python build/
|
|
53
|
+
develop-eggs/
|
|
54
|
+
dist/
|
|
55
|
+
downloads/
|
|
56
|
+
eggs/
|
|
57
|
+
.eggs/
|
|
58
|
+
lib/
|
|
59
|
+
lib64/
|
|
60
|
+
parts/
|
|
61
|
+
sdist/
|
|
62
|
+
var/
|
|
63
|
+
wheels/
|
|
64
|
+
*.whl
|
|
65
|
+
*.egg-info/
|
|
66
|
+
.installed.cfg
|
|
67
|
+
*.egg
|
|
68
|
+
*.manifest
|
|
69
|
+
*.spec
|
|
70
|
+
|
|
71
|
+
# installer logs
|
|
72
|
+
pip-log.txt
|
|
73
|
+
pip-delete-this-directory.txt
|
|
74
|
+
|
|
75
|
+
# unit test / coverage reports
|
|
76
|
+
htmlcov/
|
|
77
|
+
.tox/
|
|
78
|
+
.coverage
|
|
79
|
+
.coverage.*
|
|
80
|
+
.cache
|
|
81
|
+
.pytest_cache/
|
|
82
|
+
nosetests.xml
|
|
83
|
+
coverage.xml
|
|
84
|
+
*.cover
|
|
85
|
+
.hypothesis/
|
|
86
|
+
junit.xml
|
|
87
|
+
|
|
88
|
+
# jupyter Notebook
|
|
89
|
+
.ipynb_checkpoints
|
|
90
|
+
|
|
91
|
+
# celery
|
|
92
|
+
celerybeat-schedule.*
|
|
93
|
+
|
|
94
|
+
# environments
|
|
95
|
+
.env
|
|
96
|
+
.venv
|
|
97
|
+
env/
|
|
98
|
+
venv/
|
|
99
|
+
ENV/
|
|
100
|
+
env.bak/
|
|
101
|
+
venv.bak/
|
|
102
|
+
|
|
103
|
+
# mkdocs documentation
|
|
104
|
+
/site
|
|
105
|
+
|
|
106
|
+
# mypy
|
|
107
|
+
.mypy_cache/
|
|
108
|
+
|
|
109
|
+
# sublime Text #
|
|
110
|
+
*.tmlanguage.cache
|
|
111
|
+
*.tmPreferences.cache
|
|
112
|
+
*.stTheme.cache
|
|
113
|
+
*.sublime-workspace
|
|
114
|
+
*.sublime-project
|
|
115
|
+
|
|
116
|
+
# sftp configuration file
|
|
117
|
+
sftp-config.json
|
|
118
|
+
|
|
119
|
+
# package control specific files Package
|
|
120
|
+
Control.last-run
|
|
121
|
+
Control.ca-list
|
|
122
|
+
Control.ca-bundle
|
|
123
|
+
Control.system-ca-bundle
|
|
124
|
+
GitHub.sublime-settings
|
|
125
|
+
|
|
126
|
+
# visual studio code
|
|
127
|
+
.vscode/*
|
|
128
|
+
!.vscode/settings.json
|
|
129
|
+
!.vscode/tasks.json
|
|
130
|
+
!.vscode/launch.json
|
|
131
|
+
!.vscode/extensions.json
|
|
132
|
+
.history
|