mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-08-16 16:34:03 +00:00
11 lines
216 B
PHP
11 lines
216 B
PHP
<?php
|
|
/**
|
|
* This makes our life easier when dealing with paths. Everything is relative
|
|
* to the application root now.
|
|
*/
|
|
chdir(dirname(__DIR__));
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
ini_set('memory_limit', '1240M');
|