{"id":25176274,"url":"https://github.com/redturtle/wpd2013","last_synced_at":"2025-04-04T01:40:36.830Z","repository":{"id":142748345,"uuid":"9342725","full_name":"RedTurtle/wpd2013","owner":"RedTurtle","description":"WordPloneDay2013 buildout","archived":false,"fork":false,"pushed_at":"2013-04-11T13:06:21.000Z","size":773,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-02-19T17:10:02.485Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RedTurtle.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-04-10T09:27:10.000Z","updated_at":"2013-12-12T12:12:14.000Z","dependencies_parsed_at":"2023-03-14T22:01:08.954Z","dependency_job_id":null,"html_url":"https://github.com/RedTurtle/wpd2013","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedTurtle%2Fwpd2013","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedTurtle%2Fwpd2013/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedTurtle%2Fwpd2013/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RedTurtle%2Fwpd2013/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RedTurtle","download_url":"https://codeload.github.com/RedTurtle/wpd2013/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247107820,"owners_count":20884795,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-09T13:16:47.882Z","updated_at":"2025-04-04T01:40:36.798Z","avatar_url":"https://github.com/RedTurtle.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Plone 4 buildout\n================\n\n[![Build Status](https://travis-ci.org/RedTurtle/deployments.buildout.plone.png?branch=master)](https://travis-ci.org/RedTurtle/deployments.buildout.plone)\n\nIntroduction\n------------\nThis is the a very basic buildout template\n\nFor the impatients\n------------------\nMake a symlink to the file you want to use (e.g. `development.cfg`) and start the buildout:\n```bash\n$ ln -s profiles/development.cfg buildout.cfg\n$ python2.7 bootstrap.py\n$ ./bin/buildout\n```\n\nBefore you start\n----------------\nProbably you may want to set up your system and configure some parameters!\nDon't forget to read the full documentation.\n\n### Requirements ###\nYou may want to install this to get this buildout working:\n```bash\n# python stuff\n$ apt-get install python-dev python-virtualenv\n# version control stuff\n$ apt-get install git subversion\n# other stuff\n$ apt-get install libjpeg8-dev poppler-utils  wv libgeos-c1\n```\n\n### Plone version ###\nIn the file `config/plone.cfg` you may can control the plone version by changing the\n__extends__ and __find-links__ variables:\n```cfg\nextends = \n    http://dist.plone.org/release/4.2.5/versions.cfg\n    ...\n\nfind-links =\n    http://dist.plone.org/release/4.2.5\n    ...\n```\n\n### Virtualenv ###\nUsing a virtualenv is a good idea:\n```bash\n# NOTE: --no-site-packages is the default behaviour of the newer virtualenv\n#       you might remove this parameter if you get an error\n$ virtualenv --no-site-packages -p /usr/bin/python2.7 .\n$ ./bin/activate\n```\n\n### Add additional eggs to Plone ###\nCustomize the __eggs__ and the __zcml__ variable in the **[plone]** section (a\ngood place is `config/base.cfg`), e.g:\n```cfg\n[plone]\neggs+=\n    my.egg\nzcml+=\n    my.egg\n```\n\n### Add development eggs with mr.developer ###\nCustomize the **[sources]** section (a good place is `profiles/development.cfg`) adding\nyour checkouts, e.g:\n```cfg\n[sources]\ncollective.developermanual = git git://github.com/collective/collective.developermanual.git\n```\n\nThe provided configuration files\n--------------------------------\nIn the directory `./profiles` you will find configs that can be symlinked in the root of the buildout.\n\n__You shouldn't use directly configuration files that are stored in `config` folder.__\n\nBeneath is the list of available configurations:\n\n### development.cfg ###\nThis is what the developer wants!\nGives you a standalone Plone instance (no ZEO).\nAs usual you can launch it with:\n```bash\n$ ./bin/instance fg\n2013-03-22 13:58:39 INFO ZServer HTTP server started at Fri Mar 22 13:58:39 2013\nHostname: 0.0.0.0\nPort: 8080\n2013-03-22 13:58:44 INFO Zope Ready to handle requests\n```\nAdds to the buildout development scripts (`test`, `i18ndude`) and to plone some\nproducts (`plone.reload` and `stxnext.pdb`).\nSome other are suggested (commented) In the `config/development.cfg` file.\nAsk for new stuff if you want (`sauna.reload`, `plone.app.debugtoolbar`, ...).\n\n### production.cfg ###\nA ZEO cluster ready for production\nWill install:\n- zeoserver\n- instance1\n- debuginstance\n- zeopack\n- repozo\n\nNote\n----\n### Versions pinning ###\nThe buildout prints unpinned versions at the end of the build.\nYou may want to add them to some cfg file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredturtle%2Fwpd2013","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fredturtle%2Fwpd2013","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fredturtle%2Fwpd2013/lists"}