2021-10-22 13:31:02 +02:00
|
|
|
import { Config } from '../../interfaces';
|
|
|
|
|
|
|
|
export const configTemplate: Config = {
|
|
|
|
WEATHER_API_KEY: '',
|
|
|
|
lat: 0,
|
|
|
|
long: 0,
|
|
|
|
isCelsius: true,
|
|
|
|
customTitle: 'Flame',
|
|
|
|
pinAppsByDefault: true,
|
|
|
|
pinCategoriesByDefault: true,
|
|
|
|
hideHeader: false,
|
|
|
|
useOrdering: 'createdAt',
|
|
|
|
appsSameTab: false,
|
|
|
|
bookmarksSameTab: false,
|
|
|
|
searchSameTab: false,
|
|
|
|
hideApps: false,
|
|
|
|
hideCategories: false,
|
|
|
|
hideSearch: false,
|
|
|
|
defaultSearchProvider: 'l',
|
|
|
|
dockerApps: false,
|
|
|
|
dockerHost: 'localhost',
|
|
|
|
kubernetesApps: false,
|
|
|
|
unpinStoppedApps: false,
|
2021-10-22 15:51:11 +02:00
|
|
|
useAmericanDate: false,
|
2021-10-26 13:09:42 +02:00
|
|
|
disableAutofocus: false,
|
2021-11-05 16:39:42 +01:00
|
|
|
greetingsSchema: 'Good evening!;Good afternoon!;Good morning!;Good night!',
|
2021-10-22 13:31:02 +02:00
|
|
|
};
|