feat: consolidate backend improvements, frontend UX fixes and Wasabi storage support

This commit is contained in:
VPS 4 Deploy Agent
2026-05-30 15:23:27 +02:00
parent de3bbc9564
commit 6dfce6723b
21 changed files with 2312 additions and 361 deletions
+4
View File
@@ -0,0 +1,4 @@
const bcrypt = require('bcrypt');
const password = 'h$tg@g5aga$ra1E3$C-yHW$-BA@DF2@Grfa!3#';
const hash = bcrypt.hashSync(password, 10);
console.log('HASH_GENERATED=' + hash);