- edit tag frontend
- edit rating frontend
- individual movie page (front+back)
Debian-base
sudo apt install mysql python3-flask python3-mysql.connector
or Arch-base
sudo pacman -S mariadb python-flask python-mysql-connector
then start or enable the DB
sudo systemctl start mysql
User and privileges
CREATE DATABASE DB_final;
CREATE USER 'final_backend'@'localhost' IDENTIFIED BY 'passwd';
GRANT ALL PRIVILEGES ON `DB_final` . * TO 'final_backend'@'localhost';Load dataset: Just use load.sql in the repo
Just get in the directory and
python3 main.py
The webpage will be at localhost:5000/