Move stuff to prepare for Node/React version

This commit is contained in:
Timothy Warren 2016-11-02 20:14:26 -04:00
parent eee3c1f96e
commit 4fdd6570cd
30 changed files with 10 additions and 5 deletions

View File

@ -24,12 +24,12 @@ use \Whoops\Handler\JsonResponseHandler;
error_reporting(-1);
// Set the default paths
define('MM_BASE_PATH', __DIR__);
define('MM_SYS_PATH', __DIR__.'/Meta/Base/');
define('MM_APP_PATH', __DIR__.'/Meta/');
define('MM_BASE_PATH', __DIR__ . '/old/');
define('MM_SYS_PATH', MM_BASE_PATH.'Meta/Base/');
define('MM_APP_PATH', MM_BASE_PATH.'Meta/');
// Autoload vendors
require(MM_BASE_PATH . '/vendor/autoload.php');
require(MM_BASE_PATH . 'vendor/autoload.php');
// Setup error handling
$whoops = new \Whoops\Run();

5
old/.gitignore vendored Executable file
View File

@ -0,0 +1,5 @@
sys/*.sqlite
docs/*
assets/js/cache/*
vendor/*
composer.lock

View File

@ -8,7 +8,7 @@
<target>docs</target>
</transformer>
<transformations>
<template name="responsive" />
<template name="clean" />
</transformations>
<files>
<directory>Meta/*</directory>