Source code used in my article "Full-Text Search in Django with PostgreSQL" based on the blog application defined in the Django documentation topic "Making queries".
Creating the djangoqueries
database in your local PostgreSQL instance:
$ createdb -U postgres -O postgres djangoqueries
Creating and activating the virtual environment:
$ python3 -m venv .venv
$ source .venv/bin/activate
Installing the latest version of django
(tested from version 1.11 to 5.1) and psycopg
(tested from version 2.7 to 3.2) using the requirements file:
$ python -m pip install -r requirements.txt
Migrating the djangoqueries
database to create all required tables:
$ python -m manage migrate
Running the defined tests:
$ python -m manage test
Populating the djangoqueries
database with demo data for the blog app:
$ python -m manage loaddata blog/fixtures/blog.json
Django Queries is licensed under the BSD 3-Clause License.
- 🌍 Blog: www.paulox.net
- 🐙 Github: @pauloxnet
- 🦣 Mastodon: @[email protected]
- 🐦️ Twitter: @pauloxnet