Fix default admin password

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9111ef36-26c8-4085-84ca-a35dc1fec1b5
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7083d608-d6d3-4a6a-9a27-6286c5109627/fd06e0bf-9a16-474a-8fb9-1949e2595d82.jpg
This commit is contained in:
alphaeusmote
2025-04-11 20:24:37 +00:00
parent c0211d4de2
commit c515e4a8d0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ export class ImprovedDatabaseStorage implements IStorage {
const customer = await this.createCustomer(defaultCustomer);
// Create admin user with proper password hashing
const adminPassword = await hashPassword("password");
const adminPassword = await hashPassword("admin123");
const adminUser: InsertUser = {
username: "admin",