docker build -t registry.deti/cellwatch/auth_app:v2 .
docker push registry.deti/cellwatch/auth_app:v2
docker compose up
source venv2/bin/activate
pip install -r requirements.txt
python3 run.py
sudo su - postgres
psql
CREATE DATABASE cellwatch;
CREATE USER admin WITH PASSWORD 'admin';
GRANT ALL PRIVILEGES ON DATABASE cellwatch TO admin;