12345678910111213141516171819202122232425262728293031 |
- # $Id: build.properties 1688 2010-04-19 20:23:27Z francois $
- #
- # This is a project-specific build.properties file. The properties
- # in this file override anything set in Propel's top-level build.properties
- # file when *this* project is being built.
- #
- # See top-level build.properties-sample for explanation of configuration
- # options.
- #
- # Because this file is included before the top-level build.properties file,
- # you cannot refer to any properties set therein.
- propel.project = bookstore_namespaced
- propel.database = mysql
- propel.database.url = mysql:dbname=test
- propel.mysqlTableType = InnoDB
- propel.disableIdentifierQuoting=true
- # For MySQL or Oracle, you also need to specify username & password
- #propel.database.user = [db username]
- #propel.database.password = [db password]
- # Note that if you do not wish to specify the database (e.g. if you
- # are using multiple databses) you can use the @DB@ token which
- # will be replaced with a database at runtime.
- # E.g.: propel.database.url = sqlite://localhost/./test/@DB@.db
- # This will work for the datadump and the insert-sql tasks.
- # propel.database.createUrl = (doesn't apply for SQLite, since db is auto-created)
- propel.targetPackage = bookstore
|