- Add complete dark mode system with theme context and toggle - Implement dark mode toggle component in navigation menu - Add client-side routing with SSR-safe signal handling - Fix language selector styling for better dark mode compatibility - Add documentation system with mdBook integration - Improve navigation menu with proper external/internal link handling - Add comprehensive project documentation and configuration - Enhance theme system with localStorage persistence - Fix arena panic issues during server-side rendering - Add proper TypeScript configuration and build optimizations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
634 B
SQL
9 lines
634 B
SQL
-- Sample users for development
|
|
-- This file works for both PostgreSQL and SQLite
|
|
|
|
INSERT INTO users (username, email, password_hash, is_active, is_verified) VALUES
|
|
('admin', 'admin@example.com', '$argon2id$v=19$m=65536,t=3,p=4$Ym9vZm9v$2RmTUplMXB3YUNGeFczL1NyTlJFWERsZVdrbUVuNHhDNlk5K1ZZWVorUT0', true, true),
|
|
('user', 'user@example.com', '$argon2id$v=19$m=65536,t=3,p=4$Ym9vZm9v$2RmTUplMXB3YUNGeFczL1NyTlJFWERsZVdrbUVuNHhDNlk5K1ZZWVorUT0', true, true),
|
|
('editor', 'editor@example.com', '$argon2id$v=19$m=65536,t=3,p=4$Ym9vZm9v$2RmTUplMXB3YUNGeFczL1NyTlJFWERsZVdrbUVuNHhDNlk5K1ZZWVorUT0', true, true)
|
|
ON CONFLICT (email) DO NOTHING;
|