Questions tagged [buildout]

zc.buildout is a Python-based build system for creating, assembling and deploying applications from multiple parts, some of which may be non-Python-based. It lets you create a buildout configuration and reproduce the same software later on.

zc.buildout is a Python-based build system for creating, assembling and deploying applications from multiple parts, some of which may be non-Python-based. It lets you create a buildout configuration and reproduce the same software later. An application may contain multiple programs, processes, and configuration settings.

359 questions
0
votes
0 answers

python/django buildout error while loading settings module

I am trying to setup my project with buildout but i have problem. My buildout.cfg [buildout] parts = django eggs = psycopg2 [versions] djangorecipe = 1.5 [django] recipe = djangorecipe project = myproject settings = settings wsgi = true eggs…
Gpost
  • 29
  • 1
  • 4
0
votes
1 answer

Ignore pycrypto in buildout $app/dist/ folder when deploying to Google App Engine

I am running into some difficulties deploying an app that I have been developing locally using dev_appserver 1.7.6 in a virtualenv with buildout. When I deploy, my local dist folder is also deployed which causes conflicts with the app engine…
Josh J
  • 6,813
  • 3
  • 25
  • 47
0
votes
1 answer

buildout - mr.developer changes order of parts

I have a buildout configuration that calls two recipes. The two recipes have to be executed in a defined order. The recipe that is to be executed last is fetched from a git repository by the mr.developer extension. However, when mr.developer pulls…
siebz0r
  • 18,867
  • 14
  • 64
  • 107
0
votes
1 answer

Faking an egg in buildout from a github repository

I want to try this middleware in a Django project I'm working on: https://github.com/directeur/django-pdf. It goes by the name "django-pdf", but is not the same as https://pypi.python.org/pypi/django-pdf/1.0.2. Unfortunately, the Directeur…
kojiro
  • 74,557
  • 19
  • 143
  • 201
0
votes
2 answers

Why isn't Buildout downloading my dependencies?

Buildout seems to have always just worked™ in the past, but I can't seem to get it to download my dependencies this go-around. Here's my buildout.cfg: [buildout] parts = python_section develop = . eggs = buildoutstarter versions =…
Naftuli Kay
  • 87,710
  • 93
  • 269
  • 411
0
votes
1 answer

How do I activate a Plone product during buildout?

I'm loosely following Martin Aspeli's book Professional Plone 4 Development and have a repeatable deployment using buildout. In order to make everything completely automated, I'd like to be able to run bin/buildout and find the site working with all…
Iain Hallam
  • 289
  • 1
  • 13
0
votes
1 answer

Issue in deployment zc.buildout with apache

I am facing some issues with deploying my buildout project (Django) in Apache using mod_wsgi. My folder structure: t/ bootstrap.py setup.py bin/ buildout django django.wsgi ..... eggs/ raven-3.1.13-py2.7.egg …
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
1 answer

Buildout's python packages or buildout's django.wsgi not loading

Am working arround zc.buildout. I deployed my project in my local apache server. My issue is when I run it, I got an import error 'No module named raven.conf' But there is all the packages I specified in egg directory. That is django trying to load…
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
2 answers

AssertionError while run zc.buildout

I have an issue in work with buildout. I download bootstrap.py using , wget http://downloads.buildout.org/2/bootstrap.py buildout.cfg [buildout] parts = python django develop = . eggs = beautifulsoup ..... [python] recipe =…
Jisson
  • 3,566
  • 8
  • 38
  • 71
0
votes
2 answers

How to use buildout to create localized version of my project?

I am trying to create a localized version of my project. I started from the following: mkdir my cd my wget http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py After the last command I get the following message: Warning:…
Verrtex
  • 4,317
  • 9
  • 34
  • 33
0
votes
1 answer

How to pull a python package from a repo using buildout?

I have a pre-rolled bootstrap script that creates a buildout.cfg for my wsgi-based framework. Buildout is run with this initially to create the necessary paste directory structure. I then pull my code from the VCS repo into the src directory, and a…
user1561108
  • 2,666
  • 9
  • 44
  • 69
0
votes
1 answer

How to Achieve Pure Isolation with Buildout

For the last week I have been struggling to get pure isolation using buildout. What I'm looking to do is install Django and the other eggs that my project needs in isolation of any of the system-installed I understand this question has been asked…
Jashugan
  • 517
  • 4
  • 13
0
votes
1 answer

What index is buildout really using?

I'm trying to install couchdbkit using following buildout config: [buildout] parts = eggs include-site-packages = false versions = versions [eggs] recipe = zc.recipe.egg:eggs eggs = couchdbkit [versions] couchdbkit = 0.6.3 It installs package…
Pavel Paulau
  • 786
  • 2
  • 7
  • 19
0
votes
2 answers

Buildout Fails w/ Python 2.5

I'm running Mac OSX 10.7.5 with Pythons 2.5-2.7 installed. One of the dependencies of my app is newrelic 1.9.0.13 (which is located here). When I bootstrap and build for Python 2.6 or 2.7, everything works flawlessly; but not when I specify…
matthewwithanm
  • 3,733
  • 2
  • 21
  • 27
0
votes
1 answer

Deploying Django with gunicorn and buildout

I wrote a little Django app, using a websockets library (gevent-socketio) and building a virtual environment with buildout. Currently, for serving I have a custom command, that constructs the SocketIOServer class, just like here [1]. Doing it with…
jam
  • 75
  • 1
  • 1
  • 7
1 2 3
23
24