Initial commit of the Asset Management System, including project structure, Docker configuration, database migrations, and core application files. Added user authentication, asset management features, and basic UI components.
This commit is contained in:
6
database/seeds/001_seed_users.sql
Normal file
6
database/seeds/001_seed_users.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
-- Insert default admin user
|
||||
-- Password: Admin!234 (will be changed on first login)
|
||||
INSERT INTO users (name, email, role, passhash, active, locale) VALUES
|
||||
('Administrator', 'admin@example.com', 'admin', '$argon2id$v=19$m=65536,t=4,p=1$dXNlcl9zYWx0$hashed_password_here', TRUE, 'de'),
|
||||
('Max Mustermann', 'max.mustermann@example.com', 'auditor', '$argon2id$v=19$m=65536,t=4,p=1$dXNlcl9zYWx0$hashed_password_here', TRUE, 'de'),
|
||||
('Anna Schmidt', 'anna.schmidt@example.com', 'employee', '$argon2id$v=19$m=65536,t=4,p=1$dXNlcl9zYWx0$hashed_password_here', TRUE, 'de');
|
||||
Reference in New Issue
Block a user