django-search
django-search copied to clipboard
Basic and Full-text Search with Django and Postgres
Basic and Full-text Search with Django and Postgres
Want to learn how to build this?
Check out the post.
Want to use this project?
Spin up the containers:
$ docker-compose up -d --build
Apply the migrations and seed the database:
$ docker-compose exec web python manage.py migrate
$ docker-compose exec web python manage.py add_quotes
Navigate to http://127.0.0.1:8011/quotes/.
Basic vs Full-text Search
You can see examples of both basic and full-text search in quotes/views.py.