mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-13 01:38:13 +00:00

* Minor: Updating Domain in Docker Compose & Docs * replace openmetadata to open-metadata --------- Co-authored-by: Prajwal Pandit <prajwalpandit@Prajwals-MacBook-Air.local> Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com> Co-authored-by: Shailesh Parmar <shailesh.parmar.webdev@gmail.com>
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
/*
|
|
* Copyright 2024 Collate.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
export const DEFAULT_ADMIN_USER = {
|
|
userName: 'admin@open-metadata.org',
|
|
password: 'admin',
|
|
};
|
|
|
|
// Larger arrays of adjectives and nouns for random userNames
|
|
export const adjectives = [
|
|
'Quick',
|
|
'Lazy',
|
|
'Happy',
|
|
'Sad',
|
|
'Bright',
|
|
'Dark',
|
|
'Eager',
|
|
'Calm',
|
|
'Brave',
|
|
'Clever',
|
|
'Bold',
|
|
'Jolly',
|
|
'Merry',
|
|
'Quiet',
|
|
'Witty',
|
|
'Zany',
|
|
'Silly',
|
|
'Lively',
|
|
'Noble',
|
|
'Gentle',
|
|
];
|
|
export const nouns = [
|
|
'Lion',
|
|
'Tiger',
|
|
'Bear',
|
|
'Wolf',
|
|
'Fox',
|
|
'Eagle',
|
|
'Shark',
|
|
'Panda',
|
|
'Falcon',
|
|
'Hawk',
|
|
'Leopard',
|
|
'Panther',
|
|
'Owl',
|
|
'Dolphin',
|
|
'Rabbit',
|
|
'Koala',
|
|
'Giraffe',
|
|
'Zebra',
|
|
'Horse',
|
|
'Deer',
|
|
];
|
|
|
|
export const USER_DESCRIPTION = `# Name of the User
|
|
This is a profile of a user created for testing purposes.
|
|
The description can be used to store additional information about the user.`;
|