Tagged Questions
9
votes
2answers
731 views
Best Fabric scripts for Django
What are the best stock Fabric scripts for deploying a typical Django project? Fabric looks very good, but seems to require you to start from scratch and write your own deployment script. Coming from ...
7
votes
3answers
558 views
Trouble activating virtualenv on server via Fabric
I am trying to run some Django management commands via Fabric on my staging server.
The problem is it seems Fabric is not able to activate the virtualenv and thus using system python/libs when ...
7
votes
4answers
991 views
Python Fabric: How to handle arbitrary remote shell prompt for input?
This is related to this question here, but with a slight twist: instead of just passing 'yes' or 'no', I need Fabric to pass an arbitrary string to the remote shell.
For instance, if the remote shell ...
5
votes
4answers
337 views
Django Deployment: Handling data in database
Right now I am using git for Django deployment which seems satisfying to me. My only problem is still how to handle the data in the database properly. Eg. I need often to edit data coming from the ...
4
votes
1answer
496 views
Advanced Django Book
I have ordered the Django Book, but I wonder if there's a good book which goes beyond the subject discussed in that book. For instance, the following topics are not discussed, but I would be ...
4
votes
2answers
1k views
hg pull from bitbucket using fabric
I'm trying to use fabric to deploy a Django project and I get this error when I run hg pull:
[myusername.webfactional.com] run: hg pull
[myusername.webfactional.com] out: remote: Warning: Permanently ...
3
votes
1answer
142 views
Fabric - sudo -u
I'm using fabric to launch a command on a remote server.
I'd like to launch this command as a different user (neither the one connected nor root).
def colstat():
run('python manage.py ...
3
votes
2answers
269 views
Is there anyway to put a django site into maintenance mode using fabric?
I'm currently using MaintenanceModeMiddleware to put my site into maintenance mode, but it requires you make the change in the settings.py file on the remote server. I would like to use fabric to ...
3
votes
2answers
986 views
Activate a python virtual environment using activate_this.py in a fabfile on Windows
I have a Fabric task that needs to access the settings of my Django project.
On Windows, I'm unable to install Fabric into the project's virtualenv (issues with Paramiko + pycrypto deps). However, I ...
3
votes
1answer
829 views
How to setup Continuous Integration and Continuous Deployment for Django projects?
I am researching about how to set up CI and continuous deployment for a small team project for a Django based web application. Here are needs:
Developer check in the code into a hosted SVN server ...
3
votes
1answer
715 views
django fabric syncdb
How would you run this django command to syncdb with fabric automatically.
python manage.py syncdb --settings="app.settings.test"
if tried to do run, it gets stuck at the "Do you want to create ...
3
votes
4answers
1k views
Activate virtualenv via os.system()
I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able to activate and run commands in ...
2
votes
3answers
95 views
Django seamless upgrades with CDN
[I'm using AWS but I think this question is relevant to all CDNs]
I'm looking to seamless deploy my Django server to the AWS cloud.
All static content (e.g. images, javascript, etc.) go to the Amazon ...
2
votes
1answer
153 views
running fabric script locally
I have a django app and I wrote a fabric script that installs my app on deployment server (Cent OS 5).
Now I want to run the same fabric script locally on the deployment server.
Is there a way to ...
2
votes
4answers
510 views
Good tool for automatic setup and deployment of Django projects
I'm starting out as an independent web developer and I recently scared away a client by giving a quote for a rather simple
site that was quite a bit higher than they expected. It was basically
...
2
votes
3answers
677 views
Python Fabric error
I'm running fabric (Django deployment to apache) and everything seems to work fine until I get to the task for installing the site:
def install_site():
"Add the virtualhost file to apache"
...
2
votes
1answer
234 views
Multiple django-apps on python path or in project
I have a decent sized django project and when I originally built it I kept all the apps in an apps folder under the project root. project/apps/articles, project/apps/video etc.
After a while I ...
1
vote
2answers
66 views
how to call a remote fabric method in django
I need to call a fabric method on a remote machine through django. I mean when user send a given request get the hostname of a remote machine.
Something like this:
def get_hostname(request):
...
1
vote
1answer
132 views
How should the Fabric deployment work If I'm using Django on Heroku with Django-South?
I want to use Fabric so I can wrap all my production deployment steps:
git push to heroku
South migrations
collectstatic for static files to S3
I'm assuming that for the git push to heroku and ...
1
vote
1answer
50 views
Fab not finding host key
Thank you for taking the time to look at my post.
I have a django site up and running, and I am trying to run a command on the remote (ubuntu) host from my local (windows) computer via fab. I have ...
1
vote
2answers
162 views
Python scripting in linux
We have around 250 identical linux server which runs a business critical web application for a bank. Basically we do a lot of scripting work but now i want to centralize that only in one location. ...
1
vote
1answer
107 views
Django Celery set individual logfile path for each task
I am trying to execute a fabric function defined in a fabfile as a celery task.
Now i need to create a separate log file everytime the task is executed. How can I
set the logfile path everytime ...
1
vote
2answers
393 views
Running the django tests using fabric
I have a fabric script that attempts to run the tests for an application that I wrote.
It is already installed using setup.py and I am able to import it.
I am following the script I found here.
My ...
1
vote
2answers
325 views
fabric deploy problem
I'm trying to deploy a django app with fabric and get the following
error:
Alexs-MacBook:fabric alex$ fab config:instance=peergw deploy -H <ip> -
u <username> -p <password>
...
1
vote
3answers
918 views
fabric python install problem
Just installed fabric, trying to use to same fabfile that works on a different server, getting this error here:
Traceback (most recent call last):
File ...
0
votes
1answer
83 views
django + virtualenv = atomic upgrade - is it possible?
I have a Django project running within a virtualevn with no site-packages. When it comes to pushing my new changes to the server, I would like to create a new virtualevn directory, install my project ...
0
votes
1answer
31 views
Tests for django app produces template not found error for “render_to_string” when executed via Fabric
When I run tests on my remote server using fabric, I get an error saying:
File "/usr/local/lib/python2.7/dist-packages/django/template/loader.py", line 138, in find_template
raise ...
0
votes
2answers
43 views
Can Django's test client use a specific virtualenv?
Is it possible to configure an instance of django.test.client.Client to use a specific virtualenv instead of the OS python install? If so, how?
thanks!
Edit:
I'm using django.test.client.Client from ...
0
votes
0answers
209 views
Django Syncdb with Fabric causes SSH Exception?
When this command gets run through Fabric, it gives me this odd SSH error. The DB I'm syncing with is an RDS instance on AWS. The command works perfectly if I SSH in and run it manually.
...
0
votes
2answers
122 views
Django - Fabric & collecstatic - can't open file 'manage.py'
I'm begining to use Fabric for a Django production server.
Here is my fabfile.py
from fabric.api import *
env.hosts = ['me@myserver.net']
def srefresh():
with path('~me/myproject'):
run('python ...
0
votes
0answers
68 views
south (django app) doesn't alter table even though migration is saved in db
Ok so basically when I deploy using Fabric, the south migrate command is being run on the remote machine and fabric outputs that each migration (i.e. 10 of them) were completed. However checking (via ...
0
votes
1answer
214 views
chef-solo from_file had an error out bash /tmp/chef-script returned 1, expected 0
Im having this error appear on chef-solo recipes, Im new to it so I dont really get this error or how to fix it... still sounds like either file or dir not found, created...
out: [Fri, 18 Mar 2011 ...
0
votes
1answer
229 views
Global Name Error when deploying with Fabric
The other person on my dev team has been deploying our Django app to the server via Fabric. Since I need to be able to deploy as well I setup Fabric on my system, but when I try to deploy I get a ...
0
votes
2answers
168 views
Import from a Django project with a different top-level folder name
I recently setup a deployment solution for my Django project using Fabric. The basic workflow being:
Check out the latest source from git on the server.
Copy it to a 'releases' directory and add a ...
0
votes
1answer
130 views
Pre-interpret Django site at deployment time
I deploy Django apps using a fabric script that checks out a copy of my project and when everything is in place the source is symlinked and the web server is reloaded (guessing this is a typical ...