https://github.com/dlrsp/django-filer-optimizer
Django application to extend the "django-filer" application with extra utils like.
https://github.com/dlrsp/django-filer-optimizer
Last synced: 4 months ago
JSON representation
Django application to extend the "django-filer" application with extra utils like.
- Host: GitHub
- URL: https://github.com/dlrsp/django-filer-optimizer
- Owner: DLRSP
- License: mit
- Created: 2023-12-23T20:39:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-18T08:12:03.000Z (about 1 year ago)
- Last Synced: 2025-04-19T16:39:35.776Z (about 1 year ago)
- Language: Python
- Size: 342 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# django-filer-optimizer [](https://pypi.python.org/pypi/django-filer-optimizer)
[](https://pypi.python.org/pypi/django-filer-optimizer)
[](https://pypi.python.org/pypi/django-filer-optimizer)
[](https://pypi.python.org/pypi/django-filer-optimizer)
[](https://pypi.python.org/pypi/django-filer-optimizer)
[](https://pypi.python.org/pypi/django-filer-optimizer)
[](https://pypi.python.org/pypi/django-filer-optimizer)
## GitHub  
## Test [](https://codecov.io/github/DLRSP/django-filer-optimizer?branch=main) [](https://results.pre-commit.ci/latest/github/DLRSP/django-filer-optimizer/main) [](https://github.com/DLRSP/django-filer-optimizer/actions/workflows/ci.yaml)
## Check Demo Project
* Check the demo repo on [GitHub](https://github.com/DLRSP/example/tree/django-filer-optimizer)
## Requirements
- Python 3.8+ supported.
- Django 3.2+ supported.
## Setup
1. Install from **pip**:
```shell
pip install django-filer-optimizer
```
2. Modify `settings.py` by adding the app to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
# ...
"filer_optimizer",
# ...
]
```
3. Modify `settings.py` by adding the config `THUMBNAIL_DEFAULT_STORAGE`:
```python
# See: https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-STORAGES
STORAGES = {
"default": {
"BACKEND": "django.core.files.storage.FileSystemStorage",
},
}
THUMBNAIL_DEFAULT_STORAGE = STORAGES["default"]["BACKEND"]
```
## Run Example Project
```shell
git clone --depth=50 --branch=django-filer-optimizer https://github.com/DLRSP/example.git DLRSP/example
cd DLRSP/example
python manage.py runserver
```
Now browser the app @ http://127.0.0.1:8000