fluffychat-fork/integration_test/data/environment_constants.dart
2026-03-20 10:34:30 +01:00

14 lines
433 B
Dart

const homeserver = String.fromEnvironment(
'HOMESERVER',
defaultValue: '10.0.2.2',
);
const user1Name = String.fromEnvironment('USER1_NAME', defaultValue: 'alice');
const user1Pw = String.fromEnvironment(
'USER1_PW',
defaultValue: 'AliceInWonderland',
);
const user2Name = String.fromEnvironment('USER2_NAME', defaultValue: 'bob');
const user2Pw = String.fromEnvironment(
'USER2_PW',
defaultValue: 'JoWirSchaffenDas',
);