mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 08:12:00 +02: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;
|