13 lines
395 B
Plaintext
13 lines
395 B
Plaintext
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 |