# set the paths to the Propel installation, your project home and your # build files project.home = ${propel.project.dir}/.. project.build = ${project.home}/build # set some basic properties for the project and the database connection propel.project = PROJECT propel.database = mysql propel.targetPackage = models propel.database.url = mysql://USER:PASS@localhost/reality propel.database.encoding = utf-8 propel.mysql.tableType = InnoDB # set the directories for the schema.xml and the runtime-conf.xml files # and the path to the template files that Propel uses propel.schema.dir = ${project.build} propel.conf.dir = ${project.build} propel.templatePath = ${propel.home}/templates # set the directories for the generated output, i.e. the data object classes, a # PHP file with the configuration data and the SQL files propel.output.dir = ${project.home}/ propel.php.dir = ${propel.output.dir}/application/ propel.phpconf.dir = ${propel.output.dir}/application/configs propel.sql.dir = ${project.build}/sql # settings for propel migrations propel.migration.dir = ${project.build}/migrations propel.migration.editor = propel.migration.table = propel_migration propel.migration.caseInsensitive = true # set the name for the configuration file propel.runtime.phpconf.file = propel-config.php