summaryrefslogtreecommitdiff
path: root/test/config.php
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2021-04-20 12:43:20 +0200
committerDaniel Weipert <code@drogueronin.de>2021-04-20 12:43:20 +0200
commita9a428462acb8aecc4c335027d552a30bb7c49b5 (patch)
treeb3c4eaf9bcc00aefd39783b6bba17607196c2177 /test/config.php
Initial commit
Diffstat (limited to 'test/config.php')
-rw-r--r--test/config.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/config.php b/test/config.php
new file mode 100644
index 0000000..6cc5ecc
--- /dev/null
+++ b/test/config.php
@@ -0,0 +1,17 @@
+<?php
+
+include dirname(__DIR__) . '/vendor/autoload.php';
+
+return [
+ 'host' => 'vagrant',
+ 'user' => 'vagrant',
+ 'private_key_file' => __DIR__ . '/.vagrant/machines/default/virtualbox/private_key',
+
+ 'tasks' => [
+ ...(new \Dweipert\DevOps\BaseServerSetup\BaseServerSetup())([
+ 'username' => 'dweipert',
+ 'password' => '1234',
+ 'mail' => 'test@example.org',
+ ]),
+ ],
+];