to build large app, you can:

1. split you tables over several models, like
db.py
db_000_user_management.py
db_001_portal.py
db_002_ecommerce.py

and so on.

2. split your code and html over several controllers:

default.py
portal.py
shop.py

views/default/*.html
views/portal/*.html
views/shop/*.html


 and so on.

-- 
Atenciosamente

-- 
=========================
Alexandre Andrade
Hipercenter.com


2010/5/13 thedangler <matt...@gmail.com>

> I'm confused when to make apps. I'll be making a pretty decent size
> website and it has over 30 tables. The site will have different
> functionalities and for the most part i have only seen code for apps
> that do two or one thing.
>
> So do i make multiple apps. If so how do i know when to make a new
> one. If not is there a proper way to build large applications.
>
> Thank you.
>

Reply via email to