-
Notifications
You must be signed in to change notification settings - Fork 0
/
propel.xml
34 lines (32 loc) · 1.51 KB
/
propel.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
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<!--
When you're part of a team, you could want to define a common configuration file and commit it into your VCS. But, of
course, there can be some properties you don't want to share, e.g. database passwords. Propel helps you and looks for
a propel.yml.dist file too, merging its properties with propel.yml ones. So you can define shared configuration
properties in propel.yml.dist, committing it in your VCS, and keep propel.yml as private. The properties loaded from
propel.yml overwrite the ones with the same name, loaded from propel.yml.dist.
For a complete references see: http://propelorm.org/documentation/reference/configuration-file.html
-->
<config>
<propel>
<paths>
<!-- The directory where Propel expects to find your `schema.xml` file. -->
<schemaDir>.</schemaDir>
<!-- The directory where Propel should output generated object model classes. -->
<phpDir>.</phpDir>
</paths>
<database>
<connections>
<connection id="default">
<adapter>mysql</adapter>
<dsn>mysql:host=localhost;port=3306;dbname=eras</dsn>
<user>root</user>
<password></password>
<settings>
<charset>utf8</charset>
</settings>
</connection>
</connections>
</database>
</propel>
</config>