Initial commit: Complete workspace configuration

- MOper/ configurations
- home-assistant/ configurations
- scripts/ automation scripts
- unix/ system configurations
- docker/ Docker services (app, devtools, database, infra, maintenance, portainer, supervision, test)

Excludes: databases, logs, large files, Git submodules, secrets (via .gitignore)
This commit is contained in:
2026-01-02 16:09:32 +00:00
commit 07377e5237
6048 changed files with 1248288 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# These are supported funding model platforms
github: causefx
patreon: organizr
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
custom: # Replace with a single custom sponsorship URL

View File

@@ -0,0 +1,22 @@
<!-- Please Fill out as much information as possible, Thanks! -->
###### Organizr Version: V 1.x
###### Branch: Master/Develop
###### WebServer: Nginx/Apache
###### Operating System: Windows/MacOS/Ubuntu
<hr>
##### Problem Description:
<!---TYPE HERE--->
<hr>
##### Reproduction Steps:
<!---TYPE HERE--->
<hr>
#### Errors on screen? If so paste here:
<!-- (Errors go below the first ``` . Don't remove the ' tags) -->
```
```

View File

@@ -0,0 +1,14 @@
name: Lock closed stale issue
on:
issues:
types: [closed]
jobs:
lock:
if: github.event.label.name == 'closed-no-issue-activity'
runs-on: ubuntu-latest
steps:
- uses: OSDKDev/lock-issues@v1.1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

View File

@@ -0,0 +1,21 @@
name: Close stale issues
on:
schedule:
- cron: "30 3 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
close-issue-message: "This issue has been closed due to lack of activity, if this issue still persists, please re-open it."
close-issue-label: "closed-no-issue-activity"
stale-issue-label: "no-issue-activity"
days-before-stale: 15
days-before-close: 90
exempt-issue-labels: "bypass-activity"
exempt-pr-labels: "bypass-activity"