public
Description: a Django-based platform for rapidly developing websites
Homepage: http://pinaxproject.com/
Clone URL: git://github.com/pinax/pinax.git
pinax /
name age message
file AUTHORS Fri Oct 17 18:39:31 -0700 2008 Updated AUTHORS file to include full names git... [Jannis Leidel]
file LICENSE Thu Oct 02 21:50:56 -0700 2008 added MIT license git-svn-id: http://svn.pinax... [jtauber]
file README Sun Oct 19 21:08:33 -0700 2008 removed core_apps git-svn-id: http://svn.pinax... [jtauber]
file VERSION Loading commit data...
directory apps/
directory docs/
directory fixtures/ Thu Dec 11 13:35:34 -0800 2008 [0.5.X] Use an underscore instead of a period i... [brosner]
directory libs/ Sat Dec 06 13:35:55 -0800 2008 [0.5.X] Added elementtree-1.2.6 to the packages... [brosner]
directory projects/ Wed Dec 03 18:04:00 -0800 2008 [0.5.X] Goodbye Pownce :( Backport of r1247 fr... [brosner]
README
pinax: a platform for rapidly developing websites
http://pinaxproject.com/

Pinax is an open-source collection of re-usable apps for the Django Web
Framework.

By integrating numerous reusable Django apps to take care of the things
that many sites have in common, it lets you focus on what makes your
site different.

While our initial development is focused around a demo social
networking site, we are also working on number of editions tailored to
intranets, learning management, software project management and more.

If you have any questions about the Pinax project, please contact
James Tauber <jtauber@jtauber.com> or join us on the #pinax IRC channel
on freenode or the pinax-users mailing list on Google Groups.


DIRECTORY STRUCTURE

projects/
    complete_project/   a complete sample project and templates
    basic_project/      a more basic starter project
apps/
    external_apps/      external re-usable apps via svn:externals
    local_apps/         re-usable apps that aren't yet externalized
libs/
    external_libs/      contains external libraries
docs/                   documentation (using rst and sphinx; in progress)
fixtures/               test fixtures (in progress)

The photologue app requires PIL which is not included in external_libs

There is some path manipulation in manage.py to get this all to work. You'll
need to do something similar in your wsgi or mod_python configuration.

Note that if you already have an external app or external lib on the path,
you don't need to use the one we provide.


With the exception of photos, things should just work out of the box. You can
cd into projects/complete_project/ or projects/basic_project/ and
run ./manage.py syncdb and ./manage.py runserver to get running immediately.