/* * 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.`;