django-filer-api

A Django app to implemnt api on django-filer.


License
BSD-1-Clause
Install
pip install django-filer-api==0.1

Documentation

=====

API for django-filer

=====

This app implement django-filer packages with api

For More Info on Django Filer: https://django-filer.readthedocs.io/en/latest/

Quick start

pip install django-filer-api

  1. Add "api" to your INSTALLED_APPS setting like this::
    INSTALLED_APPS = [
        ...
        'filer_api',
    ]

2 - include dependencies:

        INSTALLED_APPS = [
        ...
        'rest_framework',
        'rest_framework.authtoken',
        'corsheaders',
        'easy_thumbnails',
        'filer',
        'mptt',
        'filer_api',
    ]
  1. Include the api URLconf in your project urls.py like this::
    path('', include('filer_api.urls')),

python manage runserver