summaryrefslogtreecommitdiff
path: root/test/config.php
diff options
context:
space:
mode:
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',
+ ]),
+ ],
+];