summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/run.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/run.php b/scripts/run.php
index 2e9e21c..2576b40 100644
--- a/scripts/run.php
+++ b/scripts/run.php
@@ -1 +1,8 @@
-run.php
+<?php
+
+// Bootstrap the autoload
+require(realpath(dirname(__FILE__) . "/../") . '/' . 'vendor/autoload.php');
+
+// Create new console
+$console = new App\Script\Console;
+$console->exec();