[11381] | 1 | Installation of Kofa |
---|
| 2 | #################### |
---|
[10120] | 3 | |
---|
[12967] | 4 | These are generic installation instructions for the WAeUP_ Kofa |
---|
[11381] | 5 | student information portal and customized versions thereof. |
---|
[10120] | 6 | |
---|
[11381] | 7 | For specific aspects of this package please refer to the local README |
---|
| 8 | file. |
---|
[10120] | 9 | |
---|
[11381] | 10 | Please note, that **only Linux-based installs** are described and actively |
---|
| 11 | supported. We recommend use of Debian_ / Ubuntu_. |
---|
[11323] | 12 | |
---|
[11381] | 13 | .. note:: This means we do not actively support Windows(tm)! |
---|
[11323] | 14 | |
---|
[12864] | 15 | .. contents:: Table of Contents |
---|
| 16 | :local: |
---|
[11323] | 17 | |
---|
[12968] | 18 | .. _prerequisites: |
---|
[11384] | 19 | |
---|
[11381] | 20 | Prerequisites |
---|
| 21 | ************* |
---|
[11323] | 22 | |
---|
[11381] | 23 | The Kofa packages are based on `Grok`_, which is a Python_ |
---|
[13075] | 24 | framework for agile web application development. Grok_ itself is based |
---|
[11381] | 25 | on `Zope`_. |
---|
[11323] | 26 | |
---|
[11381] | 27 | Both, Grok_ and Zope_, are written in the `Python`_ programming |
---|
| 28 | language (with parts written in C). You therefore have to have |
---|
| 29 | `Python`_ installed (including `Python`_ headers). |
---|
[11323] | 30 | |
---|
| 31 | |
---|
[11381] | 32 | Preparing the System |
---|
[11323] | 33 | ==================== |
---|
| 34 | |
---|
[12967] | 35 | For a Kofa install we need of course `Python`_ installed as well as |
---|
[11381] | 36 | some standard developer tools like C compilers, C libraries, etc. |
---|
[11323] | 37 | |
---|
| 38 | What you need (Debian/Ubuntu package names in brackets): |
---|
| 39 | |
---|
[11381] | 40 | * Python 2.7 (``python2.7``) |
---|
[11323] | 41 | |
---|
[11381] | 42 | * Python 2.7 development files (``python2.7-dev``) |
---|
[11323] | 43 | |
---|
[11381] | 44 | * A C-Compiler with basic C developer libraries (``build-essential``) |
---|
[11323] | 45 | |
---|
[11527] | 46 | * A subversion client (``subversion``) |
---|
[11323] | 47 | |
---|
[11527] | 48 | * XML and XSLT development libraries (``libxml2-dev``, ``libxslt1-dev``) |
---|
| 49 | |
---|
[13690] | 50 | * Other helper libraries, especially for image processing support |
---|
| 51 | (``zlib1g-dev``, ``libssl-dev``, ``libffi-dev``, ``libjpeg-dev``, |
---|
| 52 | ``libfreetype6-dev``, ``libtiff-dev`` ``libopenjpeg-dev``) |
---|
| 53 | |
---|
[11381] | 54 | * enscript (``enscript``) [optional] |
---|
[11323] | 55 | |
---|
| 56 | This is only needed if you want test coverage reports. |
---|
| 57 | |
---|
| 58 | All these packages can be installed on Debian systems like this:: |
---|
| 59 | |
---|
[11527] | 60 | $ sudo apt-get install python2.7 python2.7-dev subversion \ |
---|
[13690] | 61 | build-essential enscript libxml2-dev libxslt1-dev \ |
---|
[13698] | 62 | zlib1g-dev libssl-dev libffi-dev libjpeg-dev \ |
---|
| 63 | libfreetype6-dev libtiff-dev libopenjpeg-dev |
---|
[11323] | 64 | |
---|
| 65 | Afterwards you should be able to enter:: |
---|
| 66 | |
---|
| 67 | $ python2.7 |
---|
| 68 | |
---|
[11381] | 69 | at the commandline and get a Python_ prompt. Quit the interpreter |
---|
[11323] | 70 | pressing <CTRL-D>. |
---|
| 71 | |
---|
[13690] | 72 | The above packages have been tested to be sufficient for running Kofa |
---|
| 73 | on Ubuntu 14.04. We check this with Docker images created at |
---|
[11323] | 74 | |
---|
[13690] | 75 | https://github.com/WAeUP/kofa-docker |
---|
| 76 | |
---|
| 77 | This project provides tags that refer to certain Kofa versions. |
---|
| 78 | |
---|
| 79 | Please note: to make freetype2 work correctly with Kofa [#]_, you have to |
---|
| 80 | fix a link:: |
---|
| 81 | |
---|
| 82 | (root) $ ln -s /usr/include/freetype2 /usr/include/freetype2/freetype |
---|
| 83 | |
---|
| 84 | |
---|
| 85 | |
---|
| 86 | |
---|
[11323] | 87 | Installing `virtualenv` |
---|
| 88 | ======================= |
---|
| 89 | |
---|
[11382] | 90 | We strongly suggest use of `virtualenv`_ to create Python_ sandboxes |
---|
| 91 | where you can run your code without touching any other installations. |
---|
[11323] | 92 | |
---|
[12967] | 93 | `virtualenv`_ is also the only possibility to build a Kofa install |
---|
[11382] | 94 | without the need of superuser permissions. In short: `virtualenv`_ |
---|
| 95 | will make your life easier. Use it. |
---|
[11323] | 96 | |
---|
[11382] | 97 | Detailed install instructions for `virtualenv`_ can be found on |
---|
| 98 | http://www.virtualenv.org/en/latest/virtualenv.html#installation. |
---|
[11323] | 99 | |
---|
[11382] | 100 | The short way for a user install (no superuser perms required) is like |
---|
| 101 | this:: |
---|
[11323] | 102 | |
---|
[11382] | 103 | $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.11.4.tar.gz#md5=9accc2d3f0ec1da479ce2c3d1fdff06e |
---|
| 104 | $ tar xvfz virtualenv-1.11.4.tar.gz |
---|
| 105 | $ cd virtualenv-1.11.4 |
---|
| 106 | $ python virtualenv.py py27 |
---|
[11323] | 107 | |
---|
[11382] | 108 | Superusers can install `virtualenv`_ system-wide much easier. On |
---|
| 109 | `Debian`_/`Ubuntu`_ systems where you have superuser permissions, you |
---|
| 110 | can install `virtualenv`_ via:: |
---|
[11323] | 111 | |
---|
[11382] | 112 | $ sudo apt-get install python-virtualenv |
---|
[11323] | 113 | |
---|
[13826] | 114 | *Or*, they install if `pip` first:: |
---|
[11323] | 115 | |
---|
[13826] | 116 | $ sudo apt-get install python-pip |
---|
| 117 | |
---|
| 118 | and then use `pip` to install `virtualenv`_:: |
---|
| 119 | |
---|
[11382] | 120 | $ sudo pip install virtualenv |
---|
[11323] | 121 | |
---|
| 122 | |
---|
[11402] | 123 | Creating a Sandbox |
---|
[11323] | 124 | ================== |
---|
| 125 | |
---|
[11383] | 126 | After installing `virtualenv`_ you can install local sandboxes like |
---|
[11401] | 127 | this (if `virtualenv` is installed system-wide):: |
---|
[11323] | 128 | |
---|
[11383] | 129 | $ virtualenv --no-site-packages py27 |
---|
[11323] | 130 | |
---|
[11401] | 131 | *or* like this:: |
---|
| 132 | |
---|
| 133 | $ python /path/to/my/virtualenv.py --no-site-packages py27 |
---|
| 134 | |
---|
[11383] | 135 | where ``py27`` is a directory in the filesystem where your sandbox |
---|
| 136 | will be created. `virtualenv` will also create this directory for |
---|
[11401] | 137 | you. While you can pick any sandbox name you want, it is recommended |
---|
| 138 | to use a sandbox name that is short and at the same time reflects the |
---|
| 139 | Python version used (here: Python 2.7). |
---|
[11323] | 140 | |
---|
| 141 | By passing the ``no-site-packages`` switch we tell `virtualenv` to |
---|
[11401] | 142 | provide a clean environment without any extra-packages installed |
---|
[11383] | 143 | systemwide. More recent versions of `virtualenv`_ have this option set |
---|
| 144 | by default. |
---|
[11323] | 145 | |
---|
[11383] | 146 | Another often used option of `virtualenv`_ is ``-p``. With ``-p`` you |
---|
| 147 | can tell `virtualenv`_ which Python executable to use as base for the |
---|
| 148 | new sandbox. |
---|
| 149 | |
---|
[11323] | 150 | You now can activate the sandbox by doing:: |
---|
| 151 | |
---|
[11383] | 152 | $ source py27/bin/activate |
---|
| 153 | (py27)$ |
---|
[11323] | 154 | |
---|
[11401] | 155 | You will notice that the input prompt changes, indicating the name of |
---|
| 156 | the sandbox activated. |
---|
[11323] | 157 | |
---|
| 158 | To deactivate the sandbox at any time, enter:: |
---|
| 159 | |
---|
[11383] | 160 | (py27)$ deactivate |
---|
[11323] | 161 | |
---|
| 162 | and the prompt will be the same as before the activation. |
---|
| 163 | |
---|
| 164 | For the following steps make sure the sandbox is active. |
---|
| 165 | |
---|
| 166 | |
---|
[11402] | 167 | Getting the Sources |
---|
| 168 | =================== |
---|
[11323] | 169 | |
---|
[11401] | 170 | Now, as the sandbox is activated (see above, if not), we can fetch the |
---|
| 171 | sources for Kofa. |
---|
[11323] | 172 | |
---|
[11401] | 173 | As Kofa is currently available from the Subversion_ repository only, |
---|
| 174 | we use the Subversion_ client `svn` and checkout the main devel branch |
---|
| 175 | of the `waeup.kofa` package like this:: |
---|
[11323] | 176 | |
---|
[11401] | 177 | (py27)$ svn co https://svn.waeup.org/repos/main/waeup.kofa/trunk |
---|
[11323] | 178 | |
---|
| 179 | The command should fetch the Kofa base package sources for you and |
---|
[11401] | 180 | will put everything in a new directory ``trunk/``. |
---|
[11323] | 181 | |
---|
| 182 | Now enter the new directory:: |
---|
| 183 | |
---|
[11401] | 184 | (py27)$ cd trunk/ |
---|
[11323] | 185 | |
---|
[11401] | 186 | and you can start building the real package. |
---|
[11323] | 187 | |
---|
[11401] | 188 | .. note:: If you not want to work with the `waeup.kofa` package but a |
---|
| 189 | customized package (like ``waeup.aaue`` or similar), then |
---|
| 190 | you can use the above checkout command but with |
---|
| 191 | ``waeup.kofa`` replaced by the name of the customized |
---|
| 192 | package:: |
---|
[11381] | 193 | |
---|
[11401] | 194 | (py27)$ svn co https://svn.waeup.org/repos/main/<PKG-NAME>/trunk |
---|
[11381] | 195 | |
---|
[11401] | 196 | For the exact link, please refer to the README.txt file in |
---|
| 197 | your package. |
---|
| 198 | |
---|
| 199 | |
---|
[11402] | 200 | Bootstrapping the Build |
---|
| 201 | ======================= |
---|
| 202 | |
---|
| 203 | After `Creating a Sandbox`_ and `Getting the Sources`_ we have to |
---|
| 204 | initialize the newly created development environment:: |
---|
| 205 | |
---|
| 206 | (py27)$ python bootstrap.py |
---|
| 207 | |
---|
| 208 | This should create a local ``bin/`` directory with at least a script |
---|
| 209 | ``buildout`` in it. |
---|
| 210 | |
---|
| 211 | If bootstrapping fails, chances are, that you need the `distribute` |
---|
| 212 | package installed. In a virtual environment you can install it without |
---|
[11703] | 213 | interfering with other packages installed on your server:: |
---|
[11402] | 214 | |
---|
| 215 | (py27)$ pip install --upgrade distribute |
---|
| 216 | |
---|
| 217 | Afterwards you have to retry the bootstrapping, until you get a |
---|
| 218 | working ``buildout`` script in the local ``bin/`` directory. |
---|
| 219 | |
---|
| 220 | Once the ``buildout`` script exists, you do not have to activate the |
---|
| 221 | virtual envronment any more (although you can). |
---|
| 222 | |
---|
| 223 | |
---|
[11381] | 224 | Part 1: Single Client Setup |
---|
| 225 | *************************** |
---|
| 226 | |
---|
[12967] | 227 | You can run Kofa with a single client (useful for evaluation, |
---|
[11401] | 228 | development, etc.) or with multiple clients running in parallel. The |
---|
| 229 | latter setup is useful in productive environments with many thousands |
---|
[11402] | 230 | users and called a ``ZEO`` install. We will cover both setup |
---|
| 231 | types. The first is covered here, the latter one is covered in `Part |
---|
| 232 | 2: ZEO Install`_. |
---|
[11401] | 233 | |
---|
[11402] | 234 | |
---|
[11404] | 235 | Building the Package |
---|
| 236 | ==================== |
---|
[11323] | 237 | |
---|
[11404] | 238 | In the sources directory (``trunk/``) you have to prepare the |
---|
[11323] | 239 | project to fetch needed components (eggs), compile C-code parts, |
---|
[11404] | 240 | etc. This is done by a single command ``buildout``:: |
---|
[11323] | 241 | |
---|
[11404] | 242 | $ ./bin/buildout |
---|
[11323] | 243 | |
---|
| 244 | If this is your first install of some Grok-related project, this step |
---|
| 245 | will need some time as lots of sources have to be fetched, many |
---|
| 246 | components must be compiled, etc. |
---|
| 247 | |
---|
| 248 | This step must be redone whenever you change something in |
---|
[11404] | 249 | ``buildout.cfg``, ``buildout-zeo.cfg``, or ``setup.py``. |
---|
[11323] | 250 | |
---|
| 251 | Note that if you have more than one sandbox for a Zope-based web |
---|
| 252 | application, it will probably make sense to share the eggs between the |
---|
| 253 | different sandboxes. You can tell ``zc.buildout`` to use a central |
---|
| 254 | eggs directory by creating ``~/.buildout/default.cfg`` with the |
---|
| 255 | following contents:: |
---|
| 256 | |
---|
[11385] | 257 | [buildout] |
---|
| 258 | eggs-directory = /home/bruno/buildout-eggs |
---|
[11323] | 259 | |
---|
[11404] | 260 | where the given directory should be exist beforehand. All eggs of all |
---|
| 261 | `buildout` projects will then be stored in this directory (and not |
---|
| 262 | fetched anew if already existing there). |
---|
[11323] | 263 | |
---|
[11404] | 264 | |
---|
| 265 | Start the Instance |
---|
[11323] | 266 | ================== |
---|
| 267 | |
---|
| 268 | You should be able now to start the created instance by doing:: |
---|
| 269 | |
---|
[11404] | 270 | $ ./bin/kofactl fg |
---|
[11323] | 271 | |
---|
[11385] | 272 | Alternatively you can do:: |
---|
[11323] | 273 | |
---|
[11404] | 274 | $ bin/paster serve parts/etc/deploy-themed.ini |
---|
[11323] | 275 | |
---|
| 276 | The port numbers where Kofa is running on your server are defined in |
---|
[11404] | 277 | `buildout.cfg` under ``[kofa_params]``. |
---|
[11323] | 278 | |
---|
[11404] | 279 | If you now point a browser to the right port on your server, for example:: |
---|
[11323] | 280 | |
---|
[11385] | 281 | localhost:8080 |
---|
[11323] | 282 | |
---|
| 283 | you should get a login pop-up, where you can login as superuser with |
---|
| 284 | ``grok`` and ``grok`` as username/password (Kofa base package only!). |
---|
| 285 | |
---|
| 286 | You can stop the instance by pressing <CTRL-C>. |
---|
| 287 | |
---|
| 288 | If you are connected and logged in, |
---|
| 289 | you should be able to add the grok-based applications |
---|
| 290 | (such as ``University``) from the menu. |
---|
| 291 | |
---|
| 292 | Add an instance of ``University`` and click on the link next to the |
---|
| 293 | then visible entry in the list of installed applications. |
---|
| 294 | |
---|
[11404] | 295 | Running the Tests |
---|
[11323] | 296 | ================= |
---|
| 297 | |
---|
[11404] | 298 | All WAeUP_ packages come with comprehensive test suites ensuring the |
---|
| 299 | software quality also after changes and updates. |
---|
[11323] | 300 | |
---|
[11404] | 301 | The package tests are easily run by executing the test runner |
---|
| 302 | from the ``bin`` directory:: |
---|
[11323] | 303 | |
---|
[11404] | 304 | $ ./bin/test |
---|
[11323] | 305 | |
---|
[11404] | 306 | Use the ``-c`` option to get coloured output. Use the ``--pdb`` option |
---|
| 307 | to start the Python_ debugger when a test fails. |
---|
| 308 | |
---|
| 309 | |
---|
[11402] | 310 | Part 2: ZEO Install |
---|
| 311 | ******************* |
---|
[11323] | 312 | |
---|
| 313 | Each ZEO install consists of at least one ZEO server and normally two |
---|
| 314 | or more ZEO clients. While the ZEO server is meant to manage the ZODB |
---|
| 315 | database for clients, the clients connect to the outside world, listen |
---|
| 316 | for request and do the real dataprocessing. |
---|
| 317 | |
---|
| 318 | We prepared a `buildout` configuration that sets up one server |
---|
| 319 | configuration and two client configs. This configuration is in |
---|
| 320 | ``buildout-zeo.cfg``. |
---|
| 321 | |
---|
[11405] | 322 | Generating the ZEO Setup |
---|
[11323] | 323 | ======================== |
---|
| 324 | |
---|
| 325 | To install Kofa ZEO-based you can run `buildout` with the given |
---|
| 326 | (or your own) configuration file like this:: |
---|
| 327 | |
---|
| 328 | $ ./bin/buildout -c buildout-zeo.cfg |
---|
| 329 | |
---|
| 330 | This should generate all scripts necessary to run servers, clients, |
---|
| 331 | etc. |
---|
| 332 | |
---|
[11405] | 333 | Starting ZEO Servers and Clients |
---|
[11323] | 334 | ================================ |
---|
| 335 | |
---|
| 336 | First start the server:: |
---|
| 337 | |
---|
| 338 | $ ./bin/zeo_server start |
---|
| 339 | |
---|
| 340 | Clients can be started by doing:: |
---|
| 341 | |
---|
| 342 | $ ./bin/zeo_client1 start |
---|
| 343 | $ ./bin/zeo_client2 start |
---|
| 344 | |
---|
| 345 | This will start both clients in daemon mode. |
---|
| 346 | |
---|
| 347 | Instead of ``start`` you can, as usually, start an instance in |
---|
| 348 | foreground (``fg``), etc. You know the drill. |
---|
| 349 | |
---|
| 350 | |
---|
[11405] | 351 | Manually Starting ZEO Clients |
---|
[11323] | 352 | ============================= |
---|
| 353 | |
---|
| 354 | This is normally not neccessary. |
---|
| 355 | |
---|
| 356 | ``zeo_clientN`` scripts are basically wrappers around calls to |
---|
| 357 | ``bin/paster``. You can bypass this wrapper and start a client |
---|
| 358 | 'manually' like this:: |
---|
| 359 | |
---|
| 360 | $ ./bin/paster serve --pid-file var/zeo1.pid --daemon \ |
---|
| 361 | pars/etc/zeo1.ini |
---|
| 362 | |
---|
[11405] | 363 | It is important to give a pid-file as `paster` otherwise can not start |
---|
[11323] | 364 | different clients (they would all refer to the same pid file |
---|
| 365 | `paster.pid` and refuse to start after the first client was started). |
---|
| 366 | |
---|
| 367 | |
---|
[13270] | 368 | Setup (parameters, ports, etc.) |
---|
| 369 | =============================== |
---|
[11323] | 370 | |
---|
| 371 | By default the server will listen on port 8100 for requests from |
---|
| 372 | localhost (not: from the outside world). |
---|
| 373 | |
---|
| 374 | You can change ZEO server settings in the ``[zeo_server]`` section |
---|
| 375 | of ``buildout-zeo.conf``. Run `buildout` afterwards. |
---|
| 376 | |
---|
| 377 | The clients will listen on port 8081 and 8082. You can change settings |
---|
| 378 | in ``etc/zeo1.ini.in`` and ``etc/zeo2.ini.in`` respectively. Run |
---|
| 379 | buildout after any change. |
---|
| 380 | |
---|
| 381 | If you want to change the paster wrapper for any zeo client, you can |
---|
| 382 | edit ``etc/zeo1.conf`` and/or ``etc/zeo2.conf``. Run buildout |
---|
| 383 | afterwards. |
---|
| 384 | |
---|
| 385 | |
---|
[11405] | 386 | Stopping ZEO Servers and Clients |
---|
| 387 | ================================ |
---|
[11323] | 388 | |
---|
[11405] | 389 | Given everything was started in daemon mode, first stop the clients:: |
---|
[11323] | 390 | |
---|
[11405] | 391 | $ ./bin/zeo_client1 stop |
---|
| 392 | $ ./bin/zeo_client2 stop |
---|
[11323] | 393 | |
---|
[11405] | 394 | Then stop the ZEO server:: |
---|
| 395 | |
---|
| 396 | $ ./bin/zeo_server stop |
---|
| 397 | |
---|
| 398 | |
---|
| 399 | Creating New ZEO Clients |
---|
| 400 | ======================== |
---|
| 401 | |
---|
| 402 | You want more ZEO clients to be created by `buildout`? Easy. Three |
---|
| 403 | steps are neccessary. |
---|
| 404 | |
---|
| 405 | 1. Create config files in `etc/` |
---|
| 406 | -------------------------------- |
---|
| 407 | |
---|
[11323] | 408 | Each client needs two configuration files: |
---|
| 409 | |
---|
| 410 | - ``etc/zeoN.conf`` |
---|
| 411 | configuring the paster wrapper |
---|
| 412 | |
---|
| 413 | - ``etc/zeoN.ini`` |
---|
| 414 | configuring the runtime config, ports, etc. |
---|
| 415 | |
---|
| 416 | Just copy over these files from the already existing zeo1/zeo2 files |
---|
| 417 | and replace ``zeo1`` or ``zeo2`` with your new name. |
---|
| 418 | |
---|
| 419 | 2. Update buildout-zeo.cfg |
---|
| 420 | -------------------------- |
---|
| 421 | |
---|
| 422 | Here, inside ``buildourt-zeo.cfg`` also three steps are needed. |
---|
| 423 | |
---|
| 424 | * 2.1. Create new .ini and .conf entries |
---|
| 425 | |
---|
| 426 | The .conf and .ini files in etc/ are only templates that have to be |
---|
| 427 | generated in their really used final location. In buildout-zeo.cfg |
---|
| 428 | you can care for this by creating a new ``[zeoN_ini]`` and |
---|
| 429 | ``[zeoN_conf]`` option (replacing ``N`` with a number, of course). |
---|
| 430 | |
---|
| 431 | Just copy over existing entries and replace the mentions of ``zeo1`` |
---|
| 432 | or ``zeo2`` by your ``zeoN``. |
---|
| 433 | |
---|
| 434 | * 2.2. Create a new ``zeo_clientN`` entry |
---|
| 435 | |
---|
| 436 | Then you have to create an entry that will generate the |
---|
| 437 | ``zeo_clientN`` script. Again, just copy over an existing |
---|
| 438 | ``[zeo_client1]`` entry and replace ``1`` withg your client number. |
---|
| 439 | |
---|
| 440 | * 2.3. Register the new sections in ``[buildout]`` section |
---|
| 441 | |
---|
| 442 | When done with the above: add the new section in ``[buildout]``:: |
---|
| 443 | |
---|
| 444 | [buildout] |
---|
| 445 | ... |
---|
| 446 | <old entries...> |
---|
| 447 | ... |
---|
| 448 | zope_conf_zeo_5 |
---|
| 449 | zeo5_ini |
---|
| 450 | zeo_client5 |
---|
| 451 | |
---|
| 452 | depending on how you named your new sections. |
---|
| 453 | |
---|
| 454 | 3. Rerun ``buildout`` |
---|
| 455 | --------------------- |
---|
| 456 | |
---|
| 457 | When adding or removing client/server instances, make sure to stop all |
---|
| 458 | running servers/clients before rerunning buildout. |
---|
| 459 | |
---|
| 460 | To activate the new setup, rerun buildout:: |
---|
| 461 | |
---|
| 462 | $ bin/buildout -c buildout-zeo.cfg |
---|
| 463 | |
---|
| 464 | This should generate any new clients and remove older ones or just |
---|
| 465 | update configuration files. |
---|
| 466 | |
---|
| 467 | |
---|
| 468 | Considerations |
---|
| 469 | ============== |
---|
| 470 | |
---|
| 471 | There are some things in the current buildout-zeo.cfg we might do not |
---|
| 472 | want. It extends the regular ``buildout.cfg`` so that we do not have |
---|
| 473 | to repeat most sections but the ``parts`` in ``[buildout]`` have to be |
---|
| 474 | listed. |
---|
| 475 | |
---|
| 476 | We need, however, not everything with a ZEO-deploy that is listed in a |
---|
| 477 | default buildout. We might do not need docs, no profiling, etc. Also a |
---|
| 478 | regular non-ZEO kofactl might not make to much sense. Therefore all |
---|
| 479 | this might be subject to changes. |
---|
[11381] | 480 | |
---|
| 481 | .. _Debian: http://www.debian.org/ |
---|
| 482 | .. _Grok: http://grok.zope.org/ |
---|
| 483 | .. _Python: http://www.python.org/ |
---|
[11401] | 484 | .. _Subversion: http://subversion.apache.org/ |
---|
[11381] | 485 | .. _Ubuntu: http://www.ubuntu.com/ |
---|
| 486 | .. _virtualenv: http://www.virtualenv.org/en/latest/ |
---|
| 487 | .. _WAeUP: https://www.waeup.org/ |
---|
| 488 | .. _Zope: http://www.zope.org/ |
---|
| 489 | .. _zc.buildout: http://cheeseshop.python.org/pypi/zc.buildout |
---|
[13690] | 490 | .. [#] Strictly speaking, this link fix is required by ``Pillow``, a |
---|
| 491 | library used by Kofa to provide higher-level image processing. |
---|