-
Notifications
You must be signed in to change notification settings - Fork 1
/
sr_configuration.xml
44 lines (38 loc) · 1.49 KB
/
sr_configuration.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!--
Document : core_config.xml
Created on : February 11, 2012, 4:16 PM
Author : smarkoski
Description:
Purpose of the document follows.
-->
<!DOCTYPE Base PUBLIC '-//DTD XCatalog//EN' 'null'>
<sr_configuration>
<coreconfig> <!-- requires a config module named coreconfig.module.php -->
<paths>
<path name="view_path">App/Views/</path>
<path name="controller_path">App/Controllers/</path>
<path name="model_path">App/Models/</path>
<path name="utility_path">Core/Utilities/</path>
<path name="app_utility_path">App/Utilities/</path>
<path name="task_path">App/Tasks/</path>
<path name="exception_path">Core/Exceptions/</path>
<path name="core_model_path">Core/Models/</path>
<path name="user_validation_rules_path">App/Utilities/Validation/Rules/</path>
</paths>
</coreconfig>
<appconfig>
<values>
<value name="basepath">/si</value>
<value name="mod_rewrite_enabled">1</value>
<value name="default_controller">index</value>
<value name="sessions_enabled">1</value>
</values>
<database>
<host>192.168.0.50</host>
<databasename>species-invaders</databasename>
<username>species-invader</username>
<password>rhokburlington</password>
</database>
</appconfig>
</sr_configuration>