mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-20 12:09:36 +02:00
Client: Implemented new config system
This commit is contained in:
parent
34279c8b8c
commit
76e50624e7
19 changed files with 625 additions and 447 deletions
24
client/src/utility/templateObjects/configTemplate.ts
Normal file
24
client/src/utility/templateObjects/configTemplate.ts
Normal file
|
@ -0,0 +1,24 @@
|
|||
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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue