From f533a1d313eb2121c156bf7a25b338e686afa00b Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 19 Apr 2016 14:00:07 +0200 Subject: * moving assets to custom directory --- http/_assets/.gitignore | 1 + http/assets/.gitignore | 1 - http/index.php | 4 +++- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 http/_assets/.gitignore delete mode 100644 http/assets/.gitignore (limited to 'http') diff --git a/http/_assets/.gitignore b/http/_assets/.gitignore new file mode 100644 index 0000000..72e8ffc --- /dev/null +++ b/http/_assets/.gitignore @@ -0,0 +1 @@ +* diff --git a/http/assets/.gitignore b/http/assets/.gitignore deleted file mode 100644 index 72e8ffc..0000000 --- a/http/assets/.gitignore +++ /dev/null @@ -1 +0,0 @@ -* diff --git a/http/index.php b/http/index.php index 26d9992..24743f8 100644 --- a/http/index.php +++ b/http/index.php @@ -3,7 +3,7 @@ // The following directory checks may be removed if performance is required $basePath = dirname(__FILE__); $frameworkPath = $basePath . '/../lib/prado/framework/prado.php'; -$assetsPath = $basePath . '/assets/'; +$assetsPath = $basePath . '/_assets/'; $applicationPath = $basePath . '/../app/php/'; $runtimePath = $basePath . '/../cache/prado/'; @@ -19,3 +19,5 @@ require_once($frameworkPath); $application = new TApplication($applicationPath); $application->run(); + +?> -- cgit v1.2.3