Advertisement
Guest User

buildout.cfg

a guest
May 11th, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.53 KB | None | 0 0
  1. ############################################
  2. #
  3. # Buildout Configuration File for Standalone Plone
  4. # ------------------------------------------------
  5. #
  6. # After making changes in this configuration file,
  7. # you should run bin/buildout to update the components.
  8. #
  9. # ALWAYS back up all Plone/Zope data and components
  10. # before changing configuration.
  11. #
  12. # Running "bin/buildout" will update your installation,
  13. # installing missing components as necessary.
  14. #
  15. # Use "bin/buildout -n" to update many components here to the newest
  16. # available releases.
  17. # This will update the add-on products you've added in the eggs= lines.
  18. # This will not, however, upgrade Plone itself (or anything else you've
  19. # pinned with a version specification). To upgrade Plone itself, see the
  20. # comments in "Plone Component Versions".
  21. #
  22. # Tutorial instructions for using zc.buildout for
  23. # configuration management are available at:
  24. # http://plone.org/documentation/tutorial/buildout
  25. # Full details at http://pypi.python.org/pypi/zc.buildout
  26. #
  27. ############################################
  28.  
  29.  
  30. [buildout]
  31. index = https://pypi.org/simple
  32.  
  33. ############################################
  34. # Plone Component Versions
  35. # ------------------------
  36. # This version of the Unified Installer has the components of Plone 4
  37. # preloaded so that it can install without an Internet connection.
  38. # If you want to update, uncomment the "http://..." line below,
  39. # edit it to point to the current version URL, comment out the
  40. # "versions.cfg" line and run "bin/buildout" while attached to the
  41. # Internet. Generally, you only want to do that as part of a planned migration.
  42. # Note that if you are updating components, you should also check the versions
  43. # section at the end of this file, since recipes or components other than
  44. # those of Zope and Plone may need updating at the same time.
  45. #
  46. extends =
  47. base.cfg
  48. versions.cfg
  49. # http://dist.plone.org/release/4.2-latest/versions.cfg
  50.  
  51. # If you change your Plone version, you'll also need to update
  52. # the repository link below.
  53. find-links +=
  54. http://dist.plone.org/release/4.2.1
  55.  
  56. ############################################
  57. # Ports
  58. # -----
  59. # Specify the port on which your Zope installation
  60. # will listen:
  61. http-address = 8080
  62.  
  63.  
  64. # If you try to start Zope as root, it will change user id to run as
  65. # the effective user specified here. This user id must own the var directory
  66. # of your buildout.
  67. effective-user = plone
  68.  
  69.  
  70. ############################################
  71. # Eggs
  72. # ----
  73. # Add an indented line to the eggs section for any Python
  74. # eggs or packages you wish to include.
  75. #
  76. eggs =
  77. Plone
  78. Pillow
  79. lxml
  80. Products.PloneFormGen==1.7.11
  81.  
  82.  
  83. # Optional Functionality
  84. # ----------------------
  85. # Uncomment the indented lines to include these add-on products.
  86. # Documentation on all of them, along with many more products,
  87. # is available at
  88. # http://plone.org/products/
  89. #
  90. # Example products:
  91. # * LinguaPlone provides tools for building multi-lingual sites
  92. # * PloneFormGen provides through-the-web form building
  93. #
  94. # Products.LinguaPlone==4.0.1
  95. # Products.PloneFormGen==1.6.0
  96. #
  97. # Note that versions may be specified here or in the [versions]
  98. # section below. You should always specify versions that you know
  99. # are compatible with the Plone release and at an acceptable
  100. # development level.
  101. #
  102. # Commonly used development tools:
  103. # Several excellent development tools are included in the develop.cfg
  104. # buildout extension. Read it to learn how to activate these tools.
  105.  
  106.  
  107. ############################################
  108. # ZCML Slugs
  109. # ----------
  110. # Some eggs need ZCML slugs to tell Zope to
  111. # use them. This is increasingly rare.
  112. zcml =
  113. # plone.reload
  114.  
  115.  
  116. ############################################
  117. # Development Eggs
  118. # ----------------
  119. # You can use paster to create "development eggs" to
  120. # develop new products/themes. Put these in the src/
  121. # directory.
  122. # You will also need to add the egg names in the
  123. # eggs section above, and may also need to add them
  124. # to the zcml section.
  125. #
  126. # Provide the *paths* to the eggs you are developing here:
  127. develop =
  128. # src/my.package
  129.  
  130.  
  131. ############################################
  132. # Debug Mode
  133. # ----------
  134. # Change debug-mode to "on" to run in development mode.
  135. # This will dramatically slow Plone.
  136. #
  137. debug-mode = off
  138. # Add-on developers should turn deprecation warnings on
  139. deprecation-warnings = off
  140. # change verbose-security to "on" for useful security errors while developing
  141. verbose-security = off
  142.  
  143.  
  144. ############################################
  145. # Backup Directory
  146. # ----------------
  147. # Sets the target directory for the bin/backup and bin/snapshotbackup
  148. # commands. Default is inside this project's var directory, but ideally
  149. # this should be on a separate volume or backup server.
  150. #
  151. backups-dir=${buildout:directory}/var
  152.  
  153.  
  154. ############################################
  155. # Environment Variables
  156. # ---------------------
  157. # Some of the behavior of your Zope/Plone instances are controlled with OS
  158. # environment variables. You may set those here in a key / value format.
  159. # Some common settings:
  160. # * TZ allows you to set a time zone for systems where it's not
  161. # automatically available.
  162. # * zope_i18n_compile_mo_files allows for automatic compilation of
  163. # missing translation files (may slow startup).
  164. # * zope_i18n_allowed_languages allows you to limit the available
  165. # translations.
  166. # * PYTHON_EGG_CACHE determines where zipped python packages are unpacked
  167. # for use.
  168. # * PYTHONHASHSEED determines initial seed for hashes. "random" causes a
  169. # pseudo-random value is used to seed the hashes of str, bytes and datetime
  170. # objects.
  171. environment-vars =
  172. zope_i18n_compile_mo_files true
  173. PYTHON_EGG_CACHE ${buildout:directory}/var/.python-eggs
  174. PYTHONHASHSEED random
  175. # TZ US/Eastern
  176. # zope_i18n_allowed_languages en es de fr
  177.  
  178.  
  179. ############################################
  180. # Initial User
  181. # ------------
  182. # This is the user id and password that will be used to create the initial
  183. # user id that will allow you to log in and create a Plone site. This only
  184. # sets the initial password; it will not allow you to change an already
  185. # existing password. If you change the admin password via the web interface,
  186. # the one below will no longer be valid.
  187. # If you find yourself locked out of your Zope/Python installation, you may
  188. # add an emergency user via "bin/plonectl adduser".
  189. user=admin:admin
  190.  
  191.  
  192. ############################################
  193. # Parts Specification
  194. #--------------------
  195. # Specifies the components that should be included in the buildout.
  196. # All the basics are in the base.cfg extension; you may add your
  197. # own if you need them at the end of this file.
  198. parts =
  199. instance
  200. zopepy
  201. zopeskel
  202. unifiedinstaller
  203. repozo
  204. backup
  205. chown
  206.  
  207.  
  208. ############################################
  209. # Versions Specification
  210. # ----------------------
  211. # Version information supplied here will "pin" Python packages to a particular
  212. # version number, even when you use the "newest" flag running buildout.
  213. # Specifying versions for all packages is a good idea and can prevent
  214. # accidental changes when you add new packages to your buildout.
  215. # Note that versions specified here will override those specified earlier
  216. # in the configuration, including those from the Plone and Zope version
  217. # config files.
  218. #
  219. [versions]
  220. ZopeSkel = 2.21.2
  221. Cheetah = 2.2.1
  222. Pillow = 1.7.7
  223. Products.DocFinderTab = 1.0.5
  224. collective.recipe.backup = 2.6
  225. plone.recipe.command = 1.1
  226. plone.recipe.unifiedinstaller = 4.1
  227.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement