Advertisement
Guest User

Untitled

a guest
Mar 5th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.81 KB | None | 0 0
  1. # @formatter:off
  2. #============================================================================
  3. # This example file contains all needed properties for this project.
  4. # For using you need to copy it with renaming to hls-debug.properties.
  5. # After this set up all properties which have at value {...} description
  6. # block for your local settings.
  7. #
  8. # Module hls-jr-config by dynamically generate needed properties file for
  9. # project at gradle task 'build'. You need only set up path for build
  10. # directory.
  11. #
  12. # If you want add property, add it here and to all configurations for
  13. # different server modes. After this add getter to IConfigLoader and
  14. # create method in ConfigLoader. In the end add check for not null
  15. # to tests.
  16. #
  17. # @author Aleksey Nikitenko
  18. #============================================================================
  19.  
  20. #============================================================================
  21. # RESERVED
  22. # Reserved properties used at build scripts. Do not delete its. You can only
  23. # change it properties.
  24. #
  25. # {your_path_to_root_project} - set up for assign absolute path
  26. #============================================================================
  27. reserved.path.to.config= /home/igor/projects/hls-src-web/hls-jr-config/config/build/hls.properties
  28. reserved.log4j.log.directory= /home/igor/projects/hls-src-web/hls-dt-log/
  29. reserved.log4j.log.level= INFO
  30. #============================================================================
  31. # GLOBAL
  32. # Global identical properties which used in all modules. For example,
  33. # property {project.server.mode} always identical for all modules. We can't
  34. # and not needed start hls-wr-admin module in debug mode and hls-wr-webapp
  35. # in production mode. This modules is work always in one mode.
  36. #
  37. # {url_where_storing_static_data} - for debug mode you need run apache
  38. # module and set root path.
  39. # For local Apache 2: http://localhost/files/static
  40. #============================================================================
  41. project.server.mode= debug
  42. project.thymeleaf.cache= false
  43. project.file.server.url= http://localhost/files/static
  44. project.file.server.path= /var/www/html/files
  45. #============================================================================
  46. # MODULE hls-jr--database
  47. # Specific options for module.
  48. #============================================================================
  49. module.hls-jr-database.type= postgresql
  50. module.hls-jr-database.driver= org.postgresql.Driver
  51. module.hls-jr-database.dialect= org.hibernate.dialect.PostgreSQL82Dialect
  52. module.hls-jr-database.url= jdbc:postgresql://localhost/helpstar
  53. module.hls-jr-database.user= postgres
  54. module.hls-jr-database.password= postgres
  55. module.hls-jr-database.maximum_pool_size= 100
  56. module.hls-jr-database.logging.sql_comments= true
  57. module.hls-jr-database.logging.format_sql= true
  58. module.hls-jr-database.logging.show_sql= true
  59. module.hls-jr-database.prepared_statements.use= true
  60. module.hls-jr-database.prepared_statements.cache= true
  61. module.hls-jr-database.prepared_statements.cache_size= 100
  62. module.hls-jr-database.hbm2ddl= create
  63. module.hls-jr-database.for_test.driver= org.postgresql.Driver
  64. module.hls-jr-database.for_test.dialect= org.hibernate.dialect.PostgreSQL82Dialect
  65. module.hls-jr-database.for_test.url= jdbc:postgresql://localhost/helpstar_test
  66. module.hls-jr-database.for_test.user= postgres
  67. module.hls-jr-database.for_test.password= postgres
  68. module.hls-jr-database.for_test.maximum_pool_size= 10
  69. module.hls-jr-database.for_test.logging.sql_comments= false
  70. module.hls-jr-database.for_test.logging.format_sql= true
  71. module.hls-jr-database.for_test.logging.show_sql= true
  72. module.hls-jr-database.for_test.hbm2ddl= create-drop
  73. #============================================================================
  74. # MODULE hls-wr-admin
  75. # Specific options for module.
  76. #============================================================================
  77. module.hls-wr-admin.url=http://localhost:8080/admin
  78. module.hls-wr-admin.context.uri=/admin/
  79. module.hls-wr-admin.default.language.code=ru
  80. #============================================================================
  81. # MODULE hls-wr-admin
  82. # Specific options for module.
  83. #============================================================================
  84. module.hls-wr-webapp.url=http://localhost:8080/webapp
  85. module.hls-wr-webapp.context.uri=/webapp/
  86. module.hls-wr-webapp.default.language.code=ru
  87. #============================================================================
  88. # @formatter:on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement