This commit is contained in:
2025-11-19 11:49:26 +00:00
parent e66910799b
commit 5b734328dc
13 changed files with 111 additions and 0 deletions

19
.repomixignore Normal file
View File

@@ -0,0 +1,19 @@
# Add patterns to ignore here, one per line
# Example:
# *.log
# tmp/
compose/solos
compose/mcpo-data
compose/firecrawl
kaas/
bin/
certs/
chisel/
docker_config/
tls/
portainer.db
portainer.key
portainer.pub
useractivity.db
repomix.config.json
repomix.output.json

5
chisel/private-key.pem Normal file
View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIDg3ONe2N8zAlOb/iVwHc3Uhn9yPzRvD1O2+nHLD+ot2oAoGCCqGSM49
AwEHoUQDQgAEq/t5C2LX6IVI2Rv79E+Kcy9L7BtbWnlNJ6KFuHrXeTBHddk1KoMt
1OR2M1Mni4zIJk0gXCuSrTKWEybsNgNz1g==
-----END EC PRIVATE KEY-----

0
compose/swarm/appwrite.env Normal file → Executable file
View File

0
compose/swarm/docker-compose.appwrite.yml Normal file → Executable file
View File

0
compose/swarm/docker-compose.blank.yml Normal file → Executable file
View File

0
compose/swarm/docker-compose.gitea.yml Normal file → Executable file
View File

0
compose/swarm/docker-compose.litellm.yml Normal file → Executable file
View File

0
compose/swarm/docker-compose.logto.yml Normal file → Executable file
View File

0
compose/swarm/docker-compose.newt.yml Normal file → Executable file
View File

15
repomix-output.json Normal file

File diff suppressed because one or more lines are too long

31
repomix-safe.sh Executable file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}" )" && pwd)"
TMP_DIR="$(mktemp -d -t repomix-safe-XXXXXX)"
cleanup() {
rm -rf "$TMP_DIR"
}
trap cleanup EXIT INT TERM
cd "$ROOT_DIR"
SAFE_ITEMS=(
"compose"
"traefik"
"docker-compose.yml"
"repomix.config.json"
".repomixignore"
)
for item in "${SAFE_ITEMS[@]}"; do
if [[ -e "$item" ]]; then
rsync -a "$item" "$TMP_DIR"/
fi
done
(
cd "$TMP_DIR"
repomix --no-security-check "$@"
)

41
repomix.config.json Normal file
View File

@@ -0,0 +1,41 @@
{
"$schema": "https://repomix.com/schemas/latest/schema.json",
"input": {
"maxFileSize": 52428800
},
"output": {
"filePath": "repomix-output.json",
"style": "json",
"parsableStyle": true,
"fileSummary": false,
"directoryStructure": true,
"files": true,
"removeComments": false,
"removeEmptyLines": false,
"compress": true,
"topFilesLength": 5,
"showLineNumbers": false,
"truncateBase64": false,
"copyToClipboard": false,
"tokenCountTree": true,
"git": {
"sortByChanges": true,
"sortByChangesMaxCommits": 100,
"includeDiffs": false,
"includeLogs": false,
"includeLogsCount": 50
}
},
"include": ["compose/", "traefik/", "docker-compose.yml"],
"ignore": {
"useGitignore": true,
"useDefaultPatterns": true,
"customPatterns": []
},
"security": {
"enableSecurityCheck": true
},
"tokenCount": {
"encoding": "o200k_base"
}
}

0
traefik/traefik.yaml Normal file → Executable file
View File