Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/EduardoJM/django-full-text-search
Projeto que visa implementar o sistema de Full-Text Search do Postgres com o Django
https://github.com/EduardoJM/django-full-text-search
django postgres postgresql search
Last synced: 8 days ago
JSON representation
Projeto que visa implementar o sistema de Full-Text Search do Postgres com o Django
- Host: GitHub
- URL: https://github.com/EduardoJM/django-full-text-search
- Owner: EduardoJM
- License: mit
- Created: 2023-04-10T11:22:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-04-23T03:19:49.000Z (over 1 year ago)
- Last Synced: 2024-08-01T21:55:42.341Z (4 months ago)
- Topics: django, postgres, postgresql, search
- Language: Python
- Homepage: https://dev.to/eduardojm/full-text-search-implementando-com-postgres-e-django-kmf
- Size: 195 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-full-text-search
Projeto que implementa o Full-Text search do Postgres com o django, tentando aproximar do sistema feito pelo [Leandro Proença](https://leandronsp.com/a-powerful-full-text-search-in-postgresql-in-less-than-20-lines). O texto sobre essa implementação tá disponível no [dev.to](https://dev.to/eduardojm/full-text-search-implementando-com-postgres-e-django-kmf).
---
## Como executar o projeto
O projeto pode ser executado facilmente utilizando o `docker` e `docker-compose`:
### Clonar o Repositório
```bash
git clone https://github.com/EduardoJM/django-full-text-search.git
cd django-full-text-search
```### Executar o Projeto
```bash
docker-compose up --build
```### Abrir o Navegador
![Navegador Exibindo Endpoint](.github/images/screenshot.png)
## Versões dos Textos
### Full-Text Search: Implementando com Postgres e Django
A versão do código desenvolvido durante o texto `Full-Text Search: Implementando com Postgres e Django` está disponível na branch [texto-1](https://github.com/EduardoJM/django-full-text-search/tree/texto-1).
### Full-Text Search: Criando um Back-End de Filtro para o Django Rest-Framework
A versão do código desenvolvido durante o texto `Full-Text Search: Criando um Back-End de Filtro para o Django Rest-Framework` está disponível na branch [texto-2](https://github.com/EduardoJM/django-full-text-search/tree/texto-2).