taskmonkey-cli 0.8.2 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/commands/pull.js +11 -4
package/package.json
CHANGED
package/src/commands/pull.js
CHANGED
|
@@ -105,9 +105,11 @@ GREETING
|
|
|
105
105
|
writeFileSync(settingsPath, JSON.stringify({
|
|
106
106
|
hooks: {
|
|
107
107
|
SessionStart: [{
|
|
108
|
-
matcher: "
|
|
109
|
-
|
|
110
|
-
|
|
108
|
+
matcher: "",
|
|
109
|
+
hooks: [{
|
|
110
|
+
type: "command",
|
|
111
|
+
command: '"$CLAUDE_PROJECT_DIR"/.claude/hooks/session-start.sh'
|
|
112
|
+
}]
|
|
111
113
|
}]
|
|
112
114
|
}
|
|
113
115
|
}, null, 2) + '\n');
|
|
@@ -395,13 +397,18 @@ Der Server hat SSH-Zugang zu Remote-Servern und deployt ein temporäres PHP-Gate
|
|
|
395
397
|
'host' => 'server.example.com',
|
|
396
398
|
'user' => 'ssh-user',
|
|
397
399
|
'port' => 22,
|
|
398
|
-
'
|
|
400
|
+
'ssh_key' => '-----BEGIN OPENSSH PRIVATE KEY-----
|
|
401
|
+
b3BlbnNzaC1rZXktdjEAAAAABG5vbm...
|
|
402
|
+
-----END OPENSSH PRIVATE KEY-----',
|
|
399
403
|
'web_root' => '/var/www/html',
|
|
400
404
|
'cms' => 'contao',
|
|
401
405
|
],
|
|
402
406
|
],
|
|
403
407
|
\`\`\`
|
|
404
408
|
|
|
409
|
+
**ssh_key** kann den Key-Inhalt direkt enthalten (beginnt mit \`-----BEGIN\`) oder einen Dateipfad auf dem Server.
|
|
410
|
+
Den Key-Inhalt direkt in der Config zu hinterlegen ist die empfohlene Methode für Mandanten.
|
|
411
|
+
|
|
405
412
|
Siehe \`docs/DatabaseGateway.md\` für die vollständige Dokumentation inkl. SQL-Beispiele und CMS-Tabellen.
|
|
406
413
|
|
|
407
414
|
## Conversation Tests
|