added initial sources

This commit is contained in:
Simon
2026-02-08 16:05:01 +00:00
parent 7f5ada3a82
commit f62cae1508
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
*/__pycache__ */__pycache__
*/__pycache__/* */__pycache__/*
.tmp .tmp
frontend/dist/*

View File

@@ -18,7 +18,9 @@ async function InitializeLocalStorage() {
if (!localStorage.getItem('config')) { if (!localStorage.getItem('config')) {
localStorage.setItem('config', JSON.stringify({ localStorage.setItem('config', JSON.stringify({
servers: [{ servers: [{
"https://getfigleaf.com": {} "https://getfigleaf.com": {},
"https://hottubapp.io": {},
"https://hottub.spacemoehre.de": {},
}] }]
})); }));
} }