taskmonkey-cli 0.8.4 → 0.8.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskmonkey-cli",
3
- "version": "0.8.4",
3
+ "version": "0.8.6",
4
4
  "description": "TaskMonkey CLI — Remote dev tools for tenant config editing and tool testing",
5
5
  "bin": {
6
6
  "tm": "./bin/tm.js",
@@ -392,15 +392,16 @@ 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
- 'database_connections' => [
395
+ 'remote_databases' => [
396
396
  'meine_website' => [
397
- 'host' => 'server.example.com',
398
- 'user' => 'ssh-user',
397
+ 'hostname' => 'ssh.example.com',
398
+ 'remote_user' => 'ssh-user',
399
399
  'port' => 22,
400
400
  'ssh_key' => '-----BEGIN OPENSSH PRIVATE KEY-----
401
- b3BlbnNzaC1rZXktdjEAAAAABG5vbm...
401
+ ...key content...
402
402
  -----END OPENSSH PRIVATE KEY-----',
403
403
  'web_root' => '/var/www/html',
404
+ 'base_url' => 'https://www.example.com', // Öffentliche URL!
404
405
  'cms' => 'contao',
405
406
  ],
406
407
  ],