Initial Commit

This commit is contained in:
2026-01-27 13:24:03 -05:00
commit c85b877dc0
42 changed files with 5689 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import bcrypt from 'bcrypt';
async function hashPassword() {
const password = process.argv[2];
if (!password) {
console.error('Usage: bun run src/scripts/hash-password.js <password>');
process.exit(1);
}
const hash = await bcrypt.hash(password, 12);
console.log('Password hash:');
console.log(hash);
}
hashPassword();