taskmonkey-cli 0.8.3 → 0.8.5
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 +7 -2
package/package.json
CHANGED
package/src/commands/pull.js
CHANGED
|
@@ -392,18 +392,23 @@ Der Server hat SSH-Zugang zu Remote-Servern und deployt ein temporäres PHP-Gate
|
|
|
392
392
|
|
|
393
393
|
**Projekte konfigurieren:** \`database_connections.php\`
|
|
394
394
|
\`\`\`php
|
|
395
|
-
'
|
|
395
|
+
'remote_databases' => [
|
|
396
396
|
'meine_website' => [
|
|
397
397
|
'host' => 'server.example.com',
|
|
398
398
|
'user' => 'ssh-user',
|
|
399
399
|
'port' => 22,
|
|
400
|
-
'
|
|
400
|
+
'ssh_key' => '-----BEGIN OPENSSH PRIVATE KEY-----
|
|
401
|
+
b3BlbnNzaC1rZXktdjEAAAAABG5vbm...
|
|
402
|
+
-----END OPENSSH PRIVATE KEY-----',
|
|
401
403
|
'web_root' => '/var/www/html',
|
|
402
404
|
'cms' => 'contao',
|
|
403
405
|
],
|
|
404
406
|
],
|
|
405
407
|
\`\`\`
|
|
406
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
|
+
|
|
407
412
|
Siehe \`docs/DatabaseGateway.md\` für die vollständige Dokumentation inkl. SQL-Beispiele und CMS-Tabellen.
|
|
408
413
|
|
|
409
414
|
## Conversation Tests
|