Advertisement
DjAngo23

build.properties

May 31st, 2012
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1.  
  2. # Project name
  3. propel.project = skollpyro
  4.  
  5. # The database PDO connection settings at builtime.
  6. # This setting is required for the sql, reverse, and datasql tasks.
  7. # Note that some drivers (e.g. mysql, oracle) require that you specify the
  8. # username and password separately from the DSN, which is why they are
  9. # available as options.
  10. # Example PDO connection strings:
  11. # mysql:host=localhost;port=3307;dbname=testdb
  12. # sqlite:/opt/databases/mydb.sq3
  13. # sqlite::memory:
  14. # pgsql:host=localhost;port=5432;dbname=testdb;user=bruce;password=mypass
  15. # oci:dbname=//localhost:1521/mydb
  16.  
  17. propel.database = mysql
  18. propel.database.url = mysql:host=localhost;port=3307;dbname=skollpyro
  19. propel.database.user = local
  20. propel.database.password = local
  21.  
  22. propel.runtime.conf.file=runtime-config.xml
  23. propel.runtime.phpconf.file = propel-conf.php
  24.  
  25.  
  26. #propel.output.dir = /addons/schema
  27. #propel.php.dir = ${propel.output.dir}/
  28. #propel.sql.dir = ${propel.output.dir}/models/sql
  29. #propel.schema.dir = ${propel.output.dir}/
  30. #propel.conf.dir = ${propel.output.dir}/
  31. #propel.phpconf.dir = ${propel.output.dir}/
  32.  
  33. # Whether to validate the XML schema using the XSD file.
  34. # The default XSD file is located under `generator/resources/xsd/database.xsd`
  35. # and you can use a custom XSD file by changing the `propel.schema.xsd.file`
  36. # property.
  37. #propel.schema.validate = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement