import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__)))

from app.utils.encryption import encrypt_password

# Encrypt the new PostgreSQL password
new_password = "F@f@k0s!!"
encrypted_password = encrypt_password(new_password)

print(f"Original password: {new_password}")
print(f"Encrypted password: {encrypted_password}")