first row

This commit is contained in:
2025-10-02 17:27:06 +00:00
parent 9409de9103
commit eefa562cb1
29 changed files with 779 additions and 739 deletions

57
.vscode/settings.json vendored
View File

@@ -4,9 +4,6 @@
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.defaultFormatter": "vscode.markdown-language-features"
@@ -16,11 +13,12 @@
},
"liveServer.settings.root": "/dist",
"liveServer.settings.file": "spa.html",
"liveServer.settings.port": 5502,
"liveServer.settings.port": 5501,
"liveServer.settings.proxy": {
"enable": true,
"baseUri": "/api",
"proxyUri": "https://login.tibicms.de/api/v1"
"proxyUri": "http://localhost:8080/api/v1/_/renz_shop_2024"
//"proxyUri": "https://dev.renzshop.testversion.online/api"
},
"extensions.ignoreRecommendations": true,
"files.autoSave": "off",
@@ -28,6 +26,21 @@
"npm.autoDetect": "off",
"debug.allowBreakpointsEverywhere": true,
"html.autoClosingTags": false,
"[django-html]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "batisteo.vscode-django"
},
"saveAndRun": {
"commands": [
{
"match": "/api/.*(\\.ya?ml|js|env)$",
"cmd": "echo \"\" > ../../cms/tibi-server/tmp.html",
"silent": true
}
]
},
"i18n-ally.sourceLanguage": "de",
"i18n-ally.keystyle": "nested",
"yaml.schemas": {
"./../../cms/tibi-types/schemas/api-config/config.json": "api/config.y*ml",
"./../../cms/tibi-types/schemas/api-config/collection.json": "api/collections/*.y*ml",
@@ -43,27 +56,35 @@
}
],
"workbench.colorCustomizations": {
"activityBar.activeBorder": "#00879f",
"activityBar.activeBackground": "#43546e",
"activityBar.background": "#43546e",
"activityBar.activeBackground": "#ec1b3c",
"activityBar.background": "#ec1b3c",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#ab748a",
"activityBarBadge.background": "#2fce11",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#43546e",
"statusBar.background": "#303c4e",
"sash.hoverBorder": "#ec1b3c",
"statusBar.background": "#c4102d",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#43546e",
"statusBarItem.remoteBackground": "#303c4e",
"statusBarItem.hoverBackground": "#ec1b3c",
"statusBarItem.remoteBackground": "#c4102d",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#303c4e",
"titleBar.activeBackground": "#c4102d",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#303c4e99",
"titleBar.inactiveForeground": "#e7e7e799"
"titleBar.inactiveBackground": "#c4102d99",
"titleBar.inactiveForeground": "#e7e7e799",
"editorGroup.border": "#ec1b3c",
"panel.border": "#ec1b3c",
"sideBar.border": "#ec1b3c",
"statusBar.border": "#c4102d",
"tab.activeBorder": "#ec1b3c",
"titleBar.border": "#c4102d"
},
"peacock.remoteColor": "#303C4E",
"peacock.remoteColor": "#C4102D",
"editor.tabCompletion": "on",
"diffEditor.codeLens": true,
"i18n-ally.localesPaths": ["public/ContentBuilder/public/contentbuilder/lang"]
"i18n-ally.localesPaths": ["frontend/locales"],
"[svelte]": {
"editor.defaultFormatter": "svelte.svelte-vscode"
}
}