Navigation Menu

Skip to content

Commit

Permalink
updated the starter project README and the descriptions of account an…
Browse files Browse the repository at this point in the history
…d basic starter projects
  • Loading branch information
jtauber committed Nov 28, 2011
1 parent fee37dd commit eb1269c
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 10 deletions.
50 changes: 47 additions & 3 deletions pinax/projects/README
@@ -1,4 +1,48 @@
This directory contains a variety of different django projects combining Pinax Starter projects are cloned using
in different ways.


@@@ more here soon about each project pinax-admin setup_project

to form the starting point of your own site.

In Pinax 0.9, we are moving towards starter projects having their own
repositories and releases.

A list of external starter projects are available on the Pinax website at:

http://pinaxproject.com/ecosystem/starter_projects/


We do still provide four foundational starter projects here for now:


zero_project
------------

This project lays the foundation for all other Pinax starter projects. It
provides the project directory layout and some key infrastructure apps on
which the other starter projects are based.


static_project
--------------

This project just serves static media and templates with no models or views.
It is a great starting point for doing HTML mockups while taking advantage of
the Django templating language.


account_project
---------------

This project takes the zero_project and adds basic account management
functionality such as sign up, log in, password change/reset and email
confirmation. It is a foundation suitable for most sites that have user
accounts.


basic_project
-------------

This project takes the account_project and adds profiles and notifications.
It is a foundation suitable for many sites that have user accounts with
profiles.
7 changes: 4 additions & 3 deletions pinax/projects/account_project/__init__.py
@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-


__about__ = """ __about__ = """
This project lays the foundation for all other Pinax starter projects. It This project takes the zero_project and adds basic account management
provides the project directory layout and some key infrastructure apps on functionality such as sign up, log in, password change/reset and email
which the other starter projects are based. confirmation. It is a foundation suitable for most sites that have user
accounts.
""" """
7 changes: 3 additions & 4 deletions pinax/projects/basic_project/__init__.py
@@ -1,8 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-


__about__ = """ __about__ = """
This project comes with the bare minimum set of applications and templates This project takes the account_project and adds profiles and notifications.
to get you started. It includes no extra tabs, only the profile and notices It is a foundation suitable for many sites that have user accounts with
tabs are included by default. From here you can add any extra functionality profiles.
and applications that you would like.
""" """

0 comments on commit eb1269c

Please sign in to comment.