aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/public/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'services/app/public/index.php')
-rw-r--r--services/app/public/index.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/services/app/public/index.php b/services/app/public/index.php
new file mode 100644
index 0000000..4461970
--- /dev/null
+++ b/services/app/public/index.php
@@ -0,0 +1,10 @@
+<?php
+
+declare(strict_types=1);
+
+require __DIR__ . '/../vendor/autoload.php';
+
+use Nsfisis\Albatross\App;
+use Nsfisis\Albatross\Config;
+
+(new App(Config::fromEnvVars()))->run();