This website requires JavaScript.
Explore
Help
Register
Sign In
mcndave
/
lean
Watch
1
Star
0
Fork
You've already forked lean
0
Code
Issues
2
Pull Requests
Projects
1
Releases
Wiki
Activity
d26a15c0ed
lean
/
skeleton
/
public
/
index.php
8 lines
112 B
PHP
Raw
Normal View
History
Unescape
Escape
- Added a new Email defintion (which will soon see it's components changed) - Added a new post-install script for composer which adds a project skeleton "ready to use". - Error 500 are now handled properly in production; waiting to see if adjustements will be required before adding other code pages.
2021-03-01 16:01:27 +00:00
<
?
php
- Added a try/catch on the Kernel load
2022-03-15 15:18:52 +00:00
try
{
require_once
(
"
../src/Kernel.php
"
);
}
catch
(
\Throwable
$t
)
{
echo
$t
->
getMessage
();
}