1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-03 18:05:18 +02:00

Created separate settings for Docker

This commit is contained in:
Paweł Malak 2021-11-10 16:45:30 +01:00
parent 5805c708d2
commit 1571981252
11 changed files with 167 additions and 83 deletions

View file

@ -1,4 +1,9 @@
import { OtherSettingsForm, SearchForm, WeatherForm } from '../../interfaces';
import {
DockerSettingsForm,
OtherSettingsForm,
SearchForm,
WeatherForm,
} from '../../interfaces';
export const otherSettingsTemplate: OtherSettingsForm = {
customTitle: document.title,
@ -10,10 +15,6 @@ export const otherSettingsTemplate: OtherSettingsForm = {
useOrdering: 'createdAt',
appsSameTab: false,
bookmarksSameTab: false,
dockerApps: true,
dockerHost: 'localhost',
kubernetesApps: true,
unpinStoppedApps: true,
useAmericanDate: false,
greetingsSchema: 'Good evening!;Good afternoon!;Good morning!;Good night!',
daySchema: 'Sunday;Monday;Tuesday;Wednesday;Thursday;Friday;Saturday',
@ -35,3 +36,10 @@ export const searchSettingsTemplate: SearchForm = {
defaultSearchProvider: 'l',
disableAutofocus: false,
};
export const dockerSettingsTemplate: DockerSettingsForm = {
dockerApps: true,
dockerHost: 'localhost',
kubernetesApps: true,
unpinStoppedApps: true,
};