Skip to content
Snippets Groups Projects

Project structure

Merged Fadhil Imam Kurnia requested to merge project_structure into master
Compare and
7 files
+ 109
0
Preferences
Compare changes
Files
7
public/index.php 0 → 100644
+ 14
0
<?php
$env = getenv('DAGOJEK_ENV');
if (!$env || $env == "development") {
$env = "development";
error_reporting(E_ALL);
ini_set('display_errors', 1);
}
require __DIR__.'/../src/app.php';
$App = DagoJek::Instance();
$App->prepareRouting();
$App->Start();
\ No newline at end of file