mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
|
|
// copy as `config.local.ts`
|
||
|
|
import type { User } from './types';
|
||
|
|
|
||
|
|
const localUser: User = {
|
||
|
|
email: 'testuser@example.com',
|
||
|
|
name: 'Test User',
|
||
|
|
password: 'securepassword123',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default localUser;
|