Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.75 KB | None | 0 0
  1. ############################################
  2. #
  3. # Buildout Configuration File for Plone
  4. # -------------------------------------
  5. #
  6. # ALWAYS back up all Plone/Zope data and components
  7. # before changing configuration.
  8. #
  9. # Running "bin/buildout" will update your installation,
  10. # installing missing components as necessary.
  11. #
  12. # This will update the add-on products you've added in the eggs= lines.
  13. # This will not, however, upgrade Plone itself (or anything else you've
  14. # pinned with a version specification). To upgrade Plone itself, see the
  15. # comments in "Plone Component Versions".
  16. #
  17. # Tutorial instructions for using zc.buildout for
  18. # configuration management are available at:
  19. # http://plone.org/documentation/tutorial/buildout
  20. # Full details at http://pypi.python.org/pypi/zc.buildout
  21. #
  22. ############################################
  23.  
  24. [buildout]
  25. ############################################
  26. # Plone Component Versions
  27. # ------------------------
  28. # This version of the Unified Installer has the components of Plone 5
  29. # preloaded so that it can install without an Internet connection.
  30. # If you want to update, uncomment the "http://..." line below,
  31. # edit it to point to the current version URL, comment out the
  32. # "versions.cfg" line and run "bin/buildout" while attached to the
  33. # Internet. Generally, you only want to do that as part of a planned migration.
  34. # Note that if you are updating components, you should also check the versions
  35. # section at the end of this file, since recipes or components other than
  36. # those of Zope and Plone may need updating at the same time.
  37. #
  38. extends =
  39. base.cfg
  40. versions.cfg
  41. # http://dist.plone.org/release/5.0.4/versions.cfg
  42.  
  43. # If you change your Plone version, you'll also need to update
  44. # the repository link below.
  45. find-links +=
  46. http://dist.plone.org/release/5.0.4
  47.  
  48. # If you try to start Zope as root, it will change user id to run as
  49. # the effective user specified here. This user id must own the var directory
  50. # of your buildout.
  51. effective-user = user
  52. # This user will own the rest of the installation, and should be used to
  53. # run buildout.
  54. buildout-user = user
  55. # A flag to tell the Unified Installer whether or not to document sudo use.
  56. need-sudo = no
  57.  
  58. ############################################
  59. # Eggs
  60. # ----
  61. # Add an indented line to the eggs section for any Python
  62. # eggs or packages you wish to include in your Plone instance.
  63. #
  64. # Note that versions may be specified here or in the [versions]
  65. # section below. You should always specify versions that you know
  66. # are compatible with the Plone release and at an acceptable
  67. # development level.
  68. #
  69. # If you update to a later version of Plone, remove the hotfix.
  70. #
  71. eggs =
  72. Plone
  73. Pillow
  74. Products.PrintingMailHost
  75. Products.PloneFormGen
  76. collective.plonetruegallery
  77. z3c.jbot
  78. Products.PrintingMailHost
  79. Products.DocFinderTab
  80. plone.reload
  81. Products.PDBDebugMode
  82. plone.app.debugtoolbar
  83. plone.api
  84. badges
  85.  
  86. ############################################
  87. # ZCML Slugs
  88. # ----------
  89. # Some eggs need ZCML slugs to tell Zope to
  90. # use them. This is increasingly rare.
  91. zcml =
  92. # plone.reload
  93.  
  94. ############################################
  95. # Development Eggs
  96. # ----------------
  97. # You can use paster to create "development eggs" to
  98. # develop new products/themes. Put these in the src/
  99. # directory.
  100. # You will also need to add the egg names in the
  101. # eggs section above, and may also need to add them
  102. # to the zcml section.
  103. #
  104. # Provide the *paths* to the eggs you are developing here:
  105. develop =
  106. # src/my.package
  107. src/badges
  108.  
  109. ############################################
  110. # var Directory
  111. # -------------
  112. # Sets the target directory for the "var" components of the install such as
  113. # database and log files.
  114. #
  115. var-dir=${buildout:directory}/var
  116.  
  117. ############################################
  118. # Backup Directory
  119. # ----------------
  120. # Sets the target directory for the bin/backup and bin/snapshotbackup
  121. # commands. Default is inside this project's var directory, but ideally
  122. # this should be on a separate volume or backup server.
  123. #
  124. backups-dir=${buildout:var-dir}
  125.  
  126. ############################################
  127. # Initial User
  128. # ------------
  129. # This is the user id and password that will be used to create the initial
  130. # user id that will allow you to log in and create a Plone site. This only
  131. # sets the initial password; it will not allow you to change an already
  132. # existing password. If you change the admin password via the web interface,
  133. # the one below will no longer be valid.
  134. # If you find yourself locked out of your Zope/Python installation, you may
  135. # add an emergency user via "bin/plonectl adduser".
  136. user=admin:admin
  137.  
  138. ############################################
  139. # Debug Options
  140. # -------------
  141. # Start Zope/Plone instances in "fg" mode to turn on debug mode;
  142. # this will dramatically slow Plone.
  143. #
  144. # Add-on developers should turn deprecation warnings on
  145. deprecation-warnings = off
  146. # change verbose-security to "on" for useful security errors while developing
  147. verbose-security = off
  148.  
  149. ############################################
  150. # Parts Specification
  151. #--------------------
  152. # Specifies the components that should be included in the buildout.
  153. # Most are defined in the base.cfg extension; you may add your
  154. # own if you need them at the end of this file.
  155. parts =
  156. instance
  157. repozo
  158. backup
  159. zopepy
  160. unifiedinstaller
  161.  
  162. ############################################
  163. # Major Parts
  164. # ----------------------
  165. # These common parts make use of sane base settings from
  166. # base.cfg. To customize a part, just add whatever options
  167. # you need. Read base.cfg for common settings.
  168.  
  169. [instance]
  170. <= instance_base
  171. recipe = plone.recipe.zope2instance
  172. http-address = 8080
  173.  
  174.  
  175. ############################################
  176. # Versions Specification
  177. # ----------------------
  178. # Version information supplied here will "pin" Python packages to a particular
  179. # version number, even when you use the "newest" flag running buildout.
  180. # Specifying versions for all packages is a good idea and can prevent
  181. # accidental changes when you add new packages to your buildout.
  182. # Note that versions specified here will override those specified earlier
  183. # in the configuration, including those from the Plone and Zope version
  184. # config files.
  185. #
  186. [versions]
  187. # Use the setuptools and zc.buildout versions that are
  188. # available in our Python environment.
  189. setuptools =
  190. zc.buildout =
  191. bobtemplates.plone = 1.0.1
  192. buildout.sanitycheck = 1.0.2
  193. collective.checkdocs = 0.2
  194. collective.recipe.backup = 3.0.0
  195. colorama = 0.3.7
  196. MarkupSafe = 0.23
  197. mr.bob = 0.1.2
  198. pkginfo = 1.2.1
  199. plone.recipe.unifiedinstaller = 4.3.2
  200. Products.DocFinderTab = 1.0.5
  201. requests-toolbelt = 0.6.0
  202. twine = 1.6.5
  203. zest.pocompile = 1.4
  204. zest.releaser = 6.6.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement