1
0
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity Security Code Quality

add lowdb

This commit is contained in:
2025-07-06 10:18:10 +07:00
parent 1b00f472a2
commit 99607fb75b
4 changed files with 160 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { User } from "./database.schema";
export const defaultAdminUser: User = {
id: 1,
username: "admin",
email: "admin@example.com",
firstName: "Admin",
lastName: "User",
password: "admin123", // You should hash this in production
isDeleted: false,
};