├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── PUBLISH.md ├── Pipfile ├── Pipfile.lock ├── README.md ├── cra_helper ├── __init__.py ├── asset_manifest.py ├── context_processors.py ├── finders.py ├── handlers.py ├── logging.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── runserver.py ├── server_check.py ├── storage.py ├── tests │ ├── __init__.py │ ├── static │ │ └── asset-manifest.json │ ├── test_asset_manifest.py │ ├── test_context_processors.py │ ├── test_handlers.py │ ├── test_package_json_homepage.py │ └── test_server_check.py └── views.py ├── requirements.txt ├── setup.cfg ├── setup.py └── side_by_side.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: MasterKale 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | *.egg-info/ 3 | dist/ 4 | build/ 5 | .vscode 6 | __pycache__ 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PUBLISH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/PUBLISH.md -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/README.md -------------------------------------------------------------------------------- /cra_helper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/__init__.py -------------------------------------------------------------------------------- /cra_helper/asset_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/asset_manifest.py -------------------------------------------------------------------------------- /cra_helper/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/context_processors.py -------------------------------------------------------------------------------- /cra_helper/finders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/finders.py -------------------------------------------------------------------------------- /cra_helper/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/handlers.py -------------------------------------------------------------------------------- /cra_helper/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/logging.py -------------------------------------------------------------------------------- /cra_helper/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cra_helper/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cra_helper/management/commands/runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/management/commands/runserver.py -------------------------------------------------------------------------------- /cra_helper/server_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/server_check.py -------------------------------------------------------------------------------- /cra_helper/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/storage.py -------------------------------------------------------------------------------- /cra_helper/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cra_helper/tests/static/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/tests/static/asset-manifest.json -------------------------------------------------------------------------------- /cra_helper/tests/test_asset_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/tests/test_asset_manifest.py -------------------------------------------------------------------------------- /cra_helper/tests/test_context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/tests/test_context_processors.py -------------------------------------------------------------------------------- /cra_helper/tests/test_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/tests/test_handlers.py -------------------------------------------------------------------------------- /cra_helper/tests/test_package_json_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/tests/test_package_json_homepage.py -------------------------------------------------------------------------------- /cra_helper/tests/test_server_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/tests/test_server_check.py -------------------------------------------------------------------------------- /cra_helper/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/cra_helper/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | six==1.10.0 2 | webencodings==0.5 3 | django-proxy==1.2.1 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/setup.py -------------------------------------------------------------------------------- /side_by_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterKale/django-cra-helper/HEAD/side_by_side.png --------------------------------------------------------------------------------