howthebodyworks + deployment 55
Using Git to manage a web site
march 2011 by howthebodyworks
static websites versioned with git. a a neat hack.
git
deployment
march 2011 by howthebodyworks
Bento, a pythonic packaging solution for python software
november 2010 by howthebodyworks
scons-happy python packager which support packin gup external dependencies and can build numpy.
python
packag
packaging
deployment
distutils
november 2010 by howthebodyworks
Mac OS X custom python path
june 2010 by howthebodyworks
better method of OS X python taming
python
deployment
june 2010 by howthebodyworks
Installing Python Modules — Python v2.6.5 documentation
june 2010 by howthebodyworks
FMI, this is here you work out how to do local per-user install of all packages: .pydistutils.cfg
python
deployment
howto
june 2010 by howthebodyworks
Caktus Blog » Archive » Basic Django deployment with virtualenv, fabric, pip and rsync
april 2010 by howthebodyworks
good times in repeatable testing land
deployment
pip
fabric
python
django
april 2010 by howthebodyworks
dinoboff's github-tools at master - GitHub
april 2010 by howthebodyworks
does more than it says. this command bootstraps a python project which automatically publishes itself to github, has inbuilt sphinx documentation, and publishes the HTML of THAT to github. the package is easy_installable, has pypi-compatible egg-info and wil walk your dog, amke your breakfast, and comes with a free pony. costs: git-specific, github-specific, assumes you don't have virtualenv, depends on pavement instead of plain distutils. FWIW, I think that paver dependency is a plus, since paver is awesome, but it does require a paver bootstrap python egg to be baked into your project.
python
paver
deployment
sphinx
git
april 2010 by howthebodyworks
Automate EC2 Instance Setup with user-data Scripts - Alestic.com
march 2010 by howthebodyworks
ubuntu instances excute their user-data in bash!
scalability
amazon
deployment
ec2
howto
ubuntu
march 2010 by howthebodyworks
Building and Distributing Packages with Distribute — Distribute documentation
january 2010 by howthebodyworks
I should get a handle on this one day.
python
deployment
howto
distribute
january 2010 by howthebodyworks
Graham Dumpleton: Save on memory with mod_wsgi 3.0.
november 2009 by howthebodyworks
memory leaks, spare python interpreters... sounds like mod_wsgi 3.0 avoids some nasty things.
wsgi
apache
deployment
november 2009 by howthebodyworks
Heroku | Ruby Cloud Platform as a Service
november 2009 by howthebodyworks
"WHERE IS THE DJANGO ONE OF THESE? `git push heroku` = your site is live on the cloud."
via:cogat
git
cloud
deployment
ruby
rails
november 2009 by howthebodyworks
virtualenvwrapper | And Now For Something Completely Different - Doug Hellmann
october 2009 by howthebodyworks
OK, I'm officially up to my neck in sensitive version dependencies for python scripts and now need this.
python
productivity
django
shell
deployment
october 2009 by howthebodyworks
making games, making webs.: screen for ghetto servers and startup scripts.
october 2009 by howthebodyworks
screen as a persistent process manager for the lazy or overworked
screen
deployment
shell
cli
admin
october 2009 by howthebodyworks
Python Package Index : distribute 0.6.3
october 2009 by howthebodyworks
Distribute is a fork of the Setuptools project.
Distribute is intended to replace Setuptools as the standard method for working with Python module distributions.
The fork has two goals:
Providing a backward compatible version to replace Setuptools and make all distributions that depend on Setuptools work as before, but with less bugs and behaviorial issues.
This work is done in the 0.6.x series
Starting with version 0.6.2, Distribute supports Python 3. Installing and using distribute for Python 3 code works exactly the same as for Python 2 code, but Distribute also helps you to support Python 2 and Python 3 from the same source code by letting you run 2to3 on the code as a part of the build process, by setting the keyword parameter use_2to3 to True. See docs/python3.txt for more information.
Refactoring the code, and releasing it in several distributions. This work is being done in the 0.7.x series but not yet released.
python
deployment
Distribute is intended to replace Setuptools as the standard method for working with Python module distributions.
The fork has two goals:
Providing a backward compatible version to replace Setuptools and make all distributions that depend on Setuptools work as before, but with less bugs and behaviorial issues.
This work is done in the 0.6.x series
Starting with version 0.6.2, Distribute supports Python 3. Installing and using distribute for Python 3 code works exactly the same as for Python 2 code, but Distribute also helps you to support Python 2 and Python 3 from the same source code by letting you run 2to3 on the code as a part of the build process, by setting the keyword parameter use_2to3 to True. See docs/python3.txt for more information.
Refactoring the code, and releasing it in several distributions. This work is being done in the 0.7.x series but not yet released.
october 2009 by howthebodyworks
Using Python with Nginx via Passenger » KBeezie
september 2009 by howthebodyworks
Didya know that one could do this? python over nginx via mod_rails. (FWIW, I still think that graham dumpleton's mod_wsgi+apache behind an nginx server looks strongest, but options are great.)
rails
python
deployment
wsgi
nginx
september 2009 by howthebodyworks
ChipLog » Blog Archive » Django Development with Djblets
september 2009 by howthebodyworks
"Djblet’s feature list currently consists of:
Authentication improvements, making it easy to register and login in one step, seamlessly, handle password recovery, and more.
* Flexible datagrids for displaying data in a paginated list with user-specific column customization, ordering and sorting.
* Decorators to drastically simplify creation of simple and block template tags.
* Caching functions for calling a function and caching the result if the data isn’t already in the cache, and a special URL pattern matcher that prevents caching of any contained URLs.
* Unit testing utility classes."
django
deployment
template
Authentication improvements, making it easy to register and login in one step, seamlessly, handle password recovery, and more.
* Flexible datagrids for displaying data in a paginated list with user-specific column customization, ordering and sorting.
* Decorators to drastically simplify creation of simple and block template tags.
* Caching functions for calling a function and caching the result if the data isn’t already in the cache, and a special URL pattern matcher that prevents caching of any contained URLs.
* Unit testing utility classes."
september 2009 by howthebodyworks
Automating web site deployment at Barcamp Brighton | Morethanseven
september 2009 by howthebodyworks
"On the first day at Barcamp Brighton this year I did a brief talk about getting started with automating deployment. I kept it nice and simple and didn’t focus on any specific technology or tool – just the general principles and pitfalls of doing anything manually.
... Fabric is a python tool similar to capistrano in Ruby. I don’t really care whether you’re using make, ant, rake, capistrano or just plain shell scripts. Getting from not automating things to automating deployments is the important part – and it’s easier that you think."
howto
python
deployment
fabric
... Fabric is a python tool similar to capistrano in Ruby. I don’t really care whether you’re using make, ant, rake, capistrano or just plain shell scripts. Getting from not automating things to automating deployments is the important part – and it’s easier that you think."
september 2009 by howthebodyworks
Paste here: Installing Django, Solr, Varnish and Supervisord with Buildout
august 2009 by howthebodyworks
the real juice here is the point that there is a skeleton init.d script there. of course there is. Is till think buildout looks messy, though.
python
django
ubuntu
debian
deployment
zc.buildout
daemon
howto
august 2009 by howthebodyworks
Developing Django apps with zc.buildout
august 2009 by howthebodyworks
oh bloody hell - jacobian was serious and now that I'm following his trunk my life probably requires me to learn how this zc-buildout thing he's into works.
zope
deployment
django
zc.buildout
august 2009 by howthebodyworks
DryDrop
august 2009 by howthebodyworks
static, git-backed sites on Appengine
nosql
gae
git
deployment
python
opensource
possumpalace
august 2009 by howthebodyworks
BitNami: Open Source. Simplified
august 2009 by howthebodyworks
somewhat lime WAMPP/XAMPP, but targetted at individual apps. If you want to try a particular, fashionable web app, this will probably allow it to run easily on your local machine
netcultures
lamp
opensource
framework
cms
wordpress
deployment
august 2009 by howthebodyworks
Django in the Real World
july 2009 by howthebodyworks
Jacob does the whole deal - scalability, deployment, replication etc
django
deployment
python
scalability
db
opensource
via:cogat
july 2009 by howthebodyworks
Tools of the Modern Python Hacker: Virtualenv, Fabric and Pip
july 2009 by howthebodyworks
a gentle talk to show you how to actually set up a nice python deployment system using a modern tools.
howto
python
agile
deployment
productivity
django
packaging
pip
virtualenv
fabric
july 2009 by howthebodyworks
Multistage Django deployments: Part 2 - sharebear.co.uk
may 2009 by howthebodyworks
nice example of how some people have deployment sanity. Hell this thing even migrates the db automatically.
python
howto
django
ssh
hg
deployment
may 2009 by howthebodyworks
Kamaelia
may 2009 by howthebodyworks
minimalist python concurrency along a message-passing actor line. libraries for games, evented io and such
python
deployment
opensource
concurrency
thread
agents
simulation
games
may 2009 by howthebodyworks
Debugging Django in Production Environments | Surfing in Kansas
may 2009 by howthebodyworks
nice hacks to get decent errors on the production site.
debug
django
python
deployment
testing
phm
may 2009 by howthebodyworks
Notes on using pip and virtualenv with Django
may 2009 by howthebodyworks
the nue wave of python package management thingies picks up speed. And PR.
howto
deployment
phm
python
may 2009 by howthebodyworks
Let's Discuss the Matter Further » pyron: Making Python package development DRY to the point of no return
april 2009 by howthebodyworks
python deployment ranted upon, then simplified.
python
deployment
april 2009 by howthebodyworks
Writing a Package in Python :: Brenelz's Web Development Tips :: Website Design Winnipeg
april 2009 by howthebodyworks
walk through of the dos and don't of python's packaging thingy.
python
howto
deployment
coding
distutils
april 2009 by howthebodyworks
Paver: Easy Scripting for Software Projects — Paver v1.0 documentation
march 2009 by howthebodyworks
pure python automated build/deployment script, like a convention driven script Make. Looks reasonably elegant - dependancies are declared using decorators, then building happens. No special syntax. that is: this loks so much easier than zc.buildout
opensource
python
deployment
svn
possumpalace
march 2009 by howthebodyworks
Using Repo and Git (Android Open Source Project)
november 2008 by howthebodyworks
repo is google python script for git allowing you to include external projects in your git project
git
google
python
deployment
opensource
november 2008 by howthebodyworks
I want a pony: Django Cheeseshop - Django developers | Google Groups
september 2008 by howthebodyworks
package management for dummies
comparison
python
deployment
september 2008 by howthebodyworks
Codebase | Welcome
july 2008 by howthebodyworks
kind of a hosted trac-workalike with deployment management baked in.
git
code
scm
ui
rails
deployment
july 2008 by howthebodyworks
django-command-extensions - Google Code
june 2008 by howthebodyworks
various tasty snippets for automating your djangoid admin life
django
deployment
Python
shell
phm
june 2008 by howthebodyworks
Overview — Phusion Passenger™ (a.k.a. mod_rails)
june 2008 by howthebodyworks
nice work, fusion... hang your rails apps off the omnipresent apache
apache
deployment
rails
ruby
opensource
june 2008 by howthebodyworks
ResourcePackage for Python
june 2008 by howthebodyworks
need to distribute data files with your python package?
packaging
Python
deployment
june 2008 by howthebodyworks
Mapufacture blog
june 2008 by howthebodyworks
consumerising geomapping stuff
gis
deployment
standards
mapping
marketing
june 2008 by howthebodyworks
Distributing Python packages
may 2008 by howthebodyworks
one bloke's neat selection of approaches for versatile python packaging. Some tricks here.
Python
deployment
howto
may 2008 by howthebodyworks
PyMOTW: pkgutil - O'Reilly ONLamp Blog
may 2008 by howthebodyworks
handy tricks to build packages
python
deployment
may 2008 by howthebodyworks
WEBalchemy
may 2008 by howthebodyworks
this little one allows front-side caches to hold user views in cache indefinitely and flushes on model update.
performance
django
deployment
apache
cache
may 2008 by howthebodyworks
Smashing Magazine
may 2008 by howthebodyworks
am i the last person i the world to discover this? apparently
webdev
coding
howto
deployment
design
standards
accessibility
magazine
animation
javascript
may 2008 by howthebodyworks
django-evolution - Google Code
may 2008 by howthebodyworks
Django Evolution is an extension to Django that allows you to track changes in your models over time, and to update the database to reflect those changes.
django
deployment
orm
sql
phm
@todo
migration
may 2008 by howthebodyworks
django-db-log - Google Code
may 2008 by howthebodyworks
logs django exception to the db, and makes them show up in the admin UI.
django
phm
deployment
ui
db
may 2008 by howthebodyworks
PythonEggs - The PEAK Developers' Center
may 2008 by howthebodyworks
how to build eggs
howto
deployment
scm
python
may 2008 by howthebodyworks
Google App Engine - Google Code
april 2008 by howthebodyworks
google opens up their apps infrastructure for arbitrary webapps.(no more sysadmin for me!)
django
HTTP
Python
google
framework
api
deployment
server
wsgi
april 2008 by howthebodyworks
LinuxJensMakingDeb - Wiki
april 2008 by howthebodyworks
Making a python module into a distributable package
howto
debian
python
deployment
april 2008 by howthebodyworks
http://cr.yp.to/daemontools.html
march 2008 by howthebodyworks
"supervise monitors a service. It starts the service and restarts the service if it dies. Setting up a new service is easy: all supervise needs is a directory with a run script that runs the service."
@todo
phm
unix
server
deployment
hosting
cpod
cli
daemon
march 2008 by howthebodyworks
Python Package Index : virtualenv 1.0
march 2008 by howthebodyworks
python local libs. the brute force, but automatic, way. see also http://grok.zope.org/documentation/how-to/using-virtualenv-for-a-clean-grok-installation for an example
phm
debug
deployment
python
march 2008 by howthebodyworks
Capistrano: Home
march 2008 by howthebodyworks
server admin automation tool
coding
deployment
ssh
ruby
scripting
opensource
productivity
phm
march 2008 by howthebodyworks
Pete and Andy try Plone 4 — Martin Aspeli
february 2008 by howthebodyworks
hypothetical plone walkthrough, if it worked like it was supposed to.
Python
zope
plone
howto
phm
deployment
svn
scm
february 2008 by howthebodyworks
Python Paste
february 2008 by howthebodyworks
handling deployment of python web apps= captistrano plus SCM?
api
deployment
framework
Python
server
wsgi
fastcgi
phm
february 2008 by howthebodyworks
K. Scott Allen : Versioning Databases – Branching and Merging
february 2008 by howthebodyworks
a suggestion for the horrid nitty gritty of database versioning
db
svn
coding
deployment
sql
howto
scm
february 2008 by howthebodyworks
Ian Bicking: a blog :: What PHP Deployment Gets Right
january 2008 by howthebodyworks
The good things about php.
php
theory
deployment
apache
cgi
january 2008 by howthebodyworks
setuptools - The PEAK Developers' Center
december 2007 by howthebodyworks
python package managment, after deb or p'raps yum or cpan::cpan.
python
packaging
deployment
reference
december 2007 by howthebodyworks
Main Page - NSIS
november 2007 by howthebodyworks
deploying client side stuff.
windows
linux
opensource
portable
coding
deployment
november 2007 by howthebodyworks
Capistrano: Automating Application Deployment |
july 2006 by howthebodyworks
web app deloyment framework with good ruby support, because it's IN ruby.
scm
webdev
ruby
rails
deployment
testing
agile
coding
design
server
july 2006 by howthebodyworks
related tags
@todo ⊕ accessibility ⊕ admin ⊕ agents ⊕ agile ⊕ amazon ⊕ animation ⊕ apache ⊕ api ⊕ cache ⊕ cgi ⊕ cli ⊕ cloud ⊕ cms ⊕ code ⊕ coding ⊕ comparison ⊕ concurrency ⊕ cpod ⊕ daemon ⊕ db ⊕ debian ⊕ debug ⊕ deployment ⊖ design ⊕ distribute ⊕ distutils ⊕ django ⊕ ec2 ⊕ fabric ⊕ fastcgi ⊕ framework ⊕ gae ⊕ games ⊕ gis ⊕ git ⊕ google ⊕ hg ⊕ hosting ⊕ howto ⊕ HTTP ⊕ javascript ⊕ lamp ⊕ linux ⊕ magazine ⊕ mapping ⊕ marketing ⊕ migration ⊕ netcultures ⊕ nginx ⊕ nosql ⊕ opensource ⊕ orm ⊕ packag ⊕ packaging ⊕ paver ⊕ performance ⊕ phm ⊕ php ⊕ pip ⊕ plone ⊕ portable ⊕ possumpalace ⊕ productivity ⊕ python ⊕ rails ⊕ reference ⊕ ruby ⊕ scalability ⊕ scm ⊕ screen ⊕ scripting ⊕ server ⊕ shell ⊕ simulation ⊕ sphinx ⊕ sql ⊕ ssh ⊕ standards ⊕ svn ⊕ template ⊕ testing ⊕ theory ⊕ thread ⊕ ubuntu ⊕ ui ⊕ unix ⊕ via:cogat ⊕ virtualenv ⊕ webdev ⊕ windows ⊕ wordpress ⊕ wsgi ⊕ zc.buildout ⊕ zope ⊕Copy this bookmark: