correct update to the database and database created for scan

This commit is contained in:
2025-04-22 16:12:17 +03:00
parent e51e4bf2bb
commit 1d6eadf540
9 changed files with 246 additions and 36 deletions

View File

@@ -2,4 +2,12 @@ python3 -m venv recticel
source recticel/bin/activate
python /home/ske087/quality_recticel/py_app/run.py
sudo mysql -u root -p
root password : Initaial01!
CREATE DATABASE trasabilitate_database;
CREATE USER 'trasabilitate'@'localhost' IDENTIFIED BY 'Initial01!';
GRANT ALL PRIVILEGES ON trasabilitate_database.* TO 'trasabilitate'@'localhost';
FLUSH PRIVILEGES;
EXIT