Jan Dittberner
1228fcef3c
* add a product and producttype table (addresses #1) * add a person table and reference to customers table (fixes #8) * use sqlalchemy-migrate's API to setup database and add configuration for the sqlalchemy-migrate calls to development.ini and the paste_deploy template (fixes #7) git-svn-id: file:///var/www/wwwusers/usr01/svn/pyalchemybiz/trunk@7 389c73d4-bf09-4d3d-a15e-f94a37d0667a
50 lines
No EOL
1.5 KiB
Text
50 lines
No EOL
1.5 KiB
Text
MANIFEST.in
|
|
README.txt
|
|
development.ini
|
|
setup.cfg
|
|
setup.py
|
|
test.ini
|
|
data/dbrepo/README
|
|
data/dbrepo/__init__.py
|
|
data/dbrepo/manage.py
|
|
data/dbrepo/migrate.cfg
|
|
data/dbrepo/versions/001_Add_initial_tables.py
|
|
data/dbrepo/versions/002_Add_customer_tables.py
|
|
data/dbrepo/versions/__init__.py
|
|
docs/index.txt
|
|
pyalchemybiz/__init__.py
|
|
pyalchemybiz/websetup.py
|
|
pyalchemybiz.egg-info/PKG-INFO
|
|
pyalchemybiz.egg-info/SOURCES.txt
|
|
pyalchemybiz.egg-info/dependency_links.txt
|
|
pyalchemybiz.egg-info/entry_points.txt
|
|
pyalchemybiz.egg-info/paste_deploy_config.ini_tmpl
|
|
pyalchemybiz.egg-info/paster_plugins.txt
|
|
pyalchemybiz.egg-info/requires.txt
|
|
pyalchemybiz.egg-info/top_level.txt
|
|
pyalchemybiz/config/__init__.py
|
|
pyalchemybiz/config/environment.py
|
|
pyalchemybiz/config/middleware.py
|
|
pyalchemybiz/config/routing.py
|
|
pyalchemybiz/controllers/__init__.py
|
|
pyalchemybiz/controllers/customer.py
|
|
pyalchemybiz/controllers/error.py
|
|
pyalchemybiz/controllers/index.py
|
|
pyalchemybiz/controllers/template.py
|
|
pyalchemybiz/lib/__init__.py
|
|
pyalchemybiz/lib/app_globals.py
|
|
pyalchemybiz/lib/base.py
|
|
pyalchemybiz/lib/helpers.py
|
|
pyalchemybiz/model/__init__.py
|
|
pyalchemybiz/model/customer.py
|
|
pyalchemybiz/model/meta.py
|
|
pyalchemybiz/model/person.py
|
|
pyalchemybiz/model/product.py
|
|
pyalchemybiz/templates/base.mako
|
|
pyalchemybiz/templates/customer.mako
|
|
pyalchemybiz/templates/index.mako
|
|
pyalchemybiz/tests/__init__.py
|
|
pyalchemybiz/tests/test_models.py
|
|
pyalchemybiz/tests/functional/__init__.py
|
|
pyalchemybiz/tests/functional/test_customer.py
|
|
pyalchemybiz/tests/functional/test_index.py |