local manual installation to develop and debug the software.
Install ffmpeg and ffprobe
sudo apt install -y ffmpeg ffprobe
Also make the local DNS record postgres-db point to localhost in /etc/hosts
echo "127.0.0.1 postgres-db" >> /etc/hosts
Create an user for ytm user, ytm_backend database. Used for theveloping postgres locally installed
createuser -d -h localhost -p 5432 -U amarine -W ytm
Create db user
INSERT INTO user_model(email, password, created_on, is_admin)
VALUES ('ytm@ytm.com', 'changeit', TIMESTAMP '2004-10-19 10:23:54+02', true)