Initial
Some checks failed
build docker image / docker-build (push) Has been cancelled

This commit is contained in:
2025-02-04 14:42:48 +02:00
commit 3db3802cb2
12 changed files with 143 additions and 0 deletions

7
app/admin-conf.json Normal file
View File

@ -0,0 +1,7 @@
{
"title": "Script server",
"port": "5000",
"access": {
"admin_users": [ "*" ]
}
}

4
app/conf.json Normal file
View File

@ -0,0 +1,4 @@
{
"title": "Script server",
"port": "5000"
}

0
app/runners/.gitkeep Normal file
View File

0
app/scripts/.gitkeep Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

42
app/themes/dark/theme.css Normal file
View File

@ -0,0 +1,42 @@
html:root {
--hover-color: rgba(255, 255, 255, 0.04);
--focus-color: rgba(255, 255, 255, 0.12);
--focus-color-solid: #424242;
--font-color-main: rgba(255, 255, 255, 0.87);
--font-color-medium: rgba(255, 255, 255, 0.60);
--font-color-disabled: rgba(255, 255, 255, 0.38);
--primary-color: #dce775;
--primary-color-raised-hover-solid: #E6F17F;
--primary-color-raised-focus-solid: #FAFF93;
--primary-color-when-focused: rgba(0, 0, 0, 0.12);
--primary-color-when-hovered: rgba(0, 0, 0, 0.04);
--font-on-primary-color-main: rgba(0, 0, 0, 0.87);
--font-on-primary-color-medium: rgba(0, 0, 0, 0.60);
--primary-color-dark-color: #a8b545;
--primary-color-dark-when-focused: rgba(0, 0, 0, 0.12);
--primary-color-dark-when-hovered: rgba(0, 0, 0, 0.04);
--font-on-primary-color-dark-main: rgba(0, 0, 0, 0.87);
--font-on-primary-color-dark-medium: rgba(0, 0, 0, 0.60);
--primary-color-light-color: #F0F4C3;
--surface-color: #121212;
--background-color: #242424;
--background-color-slight-emphasis: rgba(255, 255, 255, 0.05);
--background-color-high-emphasis: rgba(255, 255, 255, 0.09);
--background-color-level-4dp: rgba(255, 255, 255, 0.09);
--background-color-level-8dp: rgba(255, 255, 255, 0.12);
--background-color-level-16dp: rgba(255, 255, 255, 0.15);
--background-color-disabled: rgba(255, 255, 255, 0.12);
--script-header-background: url('../theme/darkBackground_header.jpg') center / cover no-repeat;
--login-header-background: url('../theme/darkBackground_login.jpg') center / cover no-repeat;
--separator-color: #424242;
--outline-color: rgba(255, 255, 255, 0.18);
}

View File

@ -0,0 +1,14 @@
html:root {
--primary-color: #E64A19;
--primary-color-raised-hover-solid: #F05423;
--primary-color-raised-focus-solid: #FF7241;
--primary-color-dark-color: #BF360C;
--primary-color-light-color: #FBE9E7;
--script-header-background: #FFCC80;
--login-header-background: var(--primary-color-dark-color);
}