btbytes (owner)
This gist is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are given this private URL.
Every gist with this icon (
) is private.
Every gist with this icon (
This gist is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Deadparrot
$ python2.6 virtualenv.py --no-site-packages deadparrot
$ wget svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py
$ bin/easy_install zc.buildout
$ bin/buildout init
Creating '/Users/pradeep/deadparrot/buildout.cfg'.
Creating directory '/Users/pradeep/deadparrot/parts'.
Creating directory '/Users/pradeep/deadparrot/develop-eggs'.
Generated script '/Users/pradeep/deadparrot/bin/buildout'.
I'm going to use Zope interfaces, so let me add that to the buildout file
Run the buildout.
$ bin/buildout
The project I'm going to develop is called deadparrot. Following the convention, i'm going to create it under src directory.
$ mkdir -p src/deadparrot
$ touch __init__.py
adding a custom shell
[python]
recipe = zc.recipe.egg
interpreter = squawk
eggs = ${buildout:eggs}




