django-admin-fast-search
latest
  • django-admin-fast-search
    • Documentation
    • Quickstart
    • Features
    • Running Tests
    • Development commands
    • Credits
  • Installation
  • Usage
  • Contributing
  • Credits
  • History
django-admin-fast-search
  • »
  • django-admin-fast-search
  • Edit on GitHub

django-admin-fast-search¶

https://badge.fury.io/py/django-admin-fast-search.svg https://travis-ci.org/utkbansal/django-admin-fast-search.svg?branch=master https://codecov.io/gh/utkbansal/django-admin-fast-search/branch/master/graph/badge.svg

Your project description goes here

Documentation¶

The full documentation is at https://django-admin-fast-search.readthedocs.io.

Quickstart¶

Install django-admin-fast-search:

pip install django-admin-fast-search

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_admin_fast_search.apps.DjangoAdminFastSearchConfig',
    ...
)

Add django-admin-fast-search’s URL patterns:

from django_admin_fast_search import urls as django_admin_fast_search_urls


urlpatterns = [
    ...
    url(r'^', include(django_admin_fast_search_urls)),
    ...
]

Features¶

  • TODO

Running Tests¶

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands¶

pip install -r requirements_dev.txt
invoke -l

Credits¶

Tools used in rendering this package:

  • Cookiecutter

  • cookiecutter-djangopackage

Next Previous

© Copyright 2021, Utkarsh Bansal. Revision d7404945.

Built with Sphinx using a theme provided by Read the Docs.