Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 601 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 601 Bytes

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.