8
* Holds the paths that are used by the system to
9
* locate the main directories, app, system, etc.
11
* Modifying these allows you to restructure your application,
12
* share a system folder between multiple applications, and more.
14
* All paths are relative to the project's root folder.
16
* NOTE: This class is required prior to Autoloader instantiation,
17
* and does not extend BaseConfig.
24
* ---------------------------------------------------------------
26
* ---------------------------------------------------------------
28
* This must contain the name of your "system" folder. Include
29
* the path if the folder is not in the same directory as this file.
31
public string $systemDirectory = __DIR__ . '/../../system';
34
* ---------------------------------------------------------------
35
* APPLICATION FOLDER NAME
36
* ---------------------------------------------------------------
38
* If you want this front controller to use a different "app"
39
* folder than the default one you can set its name here. The folder
40
* can also be renamed or relocated anywhere on your server. If
41
* you do, use a full server path.
43
* @see http://codeigniter.com/user_guide/general/managing_apps.html
45
public string $appDirectory = __DIR__ . '/..';
48
* ---------------------------------------------------------------
49
* WRITABLE DIRECTORY NAME
50
* ---------------------------------------------------------------
52
* This variable must contain the name of your "writable" directory.
53
* The writable directory allows you to group all directories that
54
* need write permission to a single place that can be tucked away
55
* for maximum security, keeping it out of the app and/or
58
public string $writableDirectory = __DIR__ . '/../../writable';
61
* ---------------------------------------------------------------
62
* TESTS DIRECTORY NAME
63
* ---------------------------------------------------------------
65
* This variable must contain the name of your "tests" directory.
67
public string $testsDirectory = __DIR__ . '/../../tests';
70
* ---------------------------------------------------------------
72
* ---------------------------------------------------------------
74
* This variable must contain the name of the directory that
75
* contains the view files used by your application. By
76
* default this is in `app/Views`. This value
77
* is used when no value is provided to `Services::renderer()`.
79
public string $viewDirectory = __DIR__ . '/../Views';