Compare commits

...

13 Commits

Author SHA1 Message Date
StephanRichter 38430feca0 extended documentation
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter 73f74a0929 extended documentation
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter 0a3f33c70d working on task description
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter e7c8039249 working on demodata
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter cc0dd85814 adding demodata
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter 33bff55811 working on demodata
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter 182060134e extended demo data
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter 64be02d863 extended demo data
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter 70ea315fa7 extending demo data
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter 889599dc40 started creating demo data
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:13:03 +02:00
StephanRichter ac0b61dca0 Merge branch 'main' into dev
Build Docker Image / Clean-Registry (push) Failing after 12m21s
Build Docker Image / Docker-Build (push) Failing after 16m34s
2026-06-17 15:07:52 +02:00
StephanRichter 1d7b47aaa0 made project page the entrypoint
Build Docker Image / Docker-Build (push) Successful in 2m39s
Build Docker Image / Clean-Registry (push) Successful in 5s
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
2026-06-17 15:07:44 +02:00
StephanRichter f49b44cd56 Merge branch 'bugfix/pipeline'
Build Docker Image / Clean-Registry (push) Successful in 6s
Build Docker Image / Docker-Build (push) Failing after 14m18s
2026-06-17 09:21:55 +02:00
27 changed files with 77 additions and 2 deletions
+1
View File
@@ -0,0 +1 @@
*.db-journal
Binary file not shown.
Binary file not shown.
Binary file not shown.
+74
View File
@@ -0,0 +1,74 @@
{
"umbrella": {
"base_url": "http://127.0.0.1:5173",
"logging": {
"rootLevel": "INFO"
},
"http": {
"port": 8080
},
"threads": 16,
"modules": {
"accounting": {
"database": "demodata/accounting.db"
},
"bookmark": {
"database": "demodata/bookmark.db"
},
"company": {
"database": "demodata/company.db"
},
"contact": {
"database": "demodata/contacts.db"
},
"document": {
"database": "demodata/documents.db",
"templates": "demodata/templates"
},
"files": {
"database": "demodata/files.db",
"base_dir": "demodata/filestore"
},
"journal": {
"database": "demodata/journal.db"
},
"message": {
"database": "demodata/message.db",
"smtp": {
"from": "umbrella@example.com",
"host": "none",
"pass": "none",
"port": 587,
"user": "none"
}
},
"notes": {
"database": "demodata/notes.db"
},
"poll": {
"database": "demodata/poll.db"
},
"project": {
"database": "demodata/projects.db"
},
"stock": {
"database": "demodata/stock.db"
},
"tags": {
"database": "demodata/tags.db"
},
"task": {
"database": "demodata/tasks.db"
},
"time": {
"database": "demodata/times.db"
},
"user": {
"database": "demodata/users.db"
},
"wiki": {
"database": "demodata/wiki.db"
}
}
}
}
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -90,7 +90,7 @@
{#if messages.warning}
<span class="warn">{@html messages.warning}</span>
{/if}
<Route path="/" component={User} />
<Route path="/" component={ProjectList} />
<Route path="/account/:id" component={Account} />
<Route path="/accounting" component={Accounts} />
<Route path="/accounting/new" component={NewAccount} />
+1 -1
View File
@@ -115,7 +115,7 @@
function select(index){
candidate = candidates[index];
disableDropdown();
<disableDropdown></disableDropdown>();
onSelect(candidate);
}