Developed with: Python, Django and MySQL
Interface: Bootstrap
The database structure anda data is based on the project of the course Buscas em textos com Python created by Jones Granatyr
apt install mysql-server mysql-client python3 -y
sudo apt-get install python3-dev default-lib mysqlclient-dev build-essential
https://github.com/PyMySQL/mysqlclient/blob/main/README.md
2. Create a database with name "search" and import data from the file search.sql using some tool like Mysql Workbench or Dbeaver
CREATE DATABASE search
git clone https://github.com/joselinosantos/search-system.git
virtualenv .venv
source .venv/bin/activate
pip install -r requirements.txt
The password from prject is 'admin', check your database and set the configuration on file settings.py on line 'PASSWORD': 'admin',
python manage.py runserver
Access the url in your browser: localhost:8000