diff options
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..18edd19 --- /dev/null +++ b/public/index.php @@ -0,0 +1,11 @@ +<?php + +use App\App; +use Symfony\Component\Dotenv\Dotenv; + +require dirname(__DIR__) . '/vendor/autoload.php'; + +$dotenv = new Dotenv(); +$dotenv->load(dirname(__DIR__) . '/.env'); + +(new App())->run(); |