1 This file is for you to describe the floof application. Typically
2 you would include information such as the information below:
7 Install ``floof`` using easy_install::
11 Make a config file as follows::
13 paster make-config floof config.ini
15 Tweak the config file as appropriate and then setup the application::
17 paster setup-app config.ini
19 Then you are ready to go.
22 ======================
24 To create a new model class, type::
28 Once you have defined your model classes in mymodel, import them in floof/models/__init__.py::
30 from mymodel import MyEntity
32 To create tables use create_sql::
36 To drop tables use drop_sql::
40 Note that you must first import your classes into floof/models/__init__.py in order for the database commands to work !