Age | Commit message (Collapse) | Author |
|
This provides the infrastructure to create views and HTTP handlers to
provide recipe steps.
|
|
This allows to formulate the test data with an object-based model which
is easier than writing it down in a relational model.
|
|
This simple model is used to test if it is helpful to implement the four
CRUD methods create, read, update and delete all inside the model
package.
The model package should also provide the datastructures for these
operations (well suited for the required views) aswell as tests for
them.
With this approach it should be possible to easily implement the view
and controller package because most of the logic is already inside the
model package and is tested.
|
|
This is useful for debugging and testing.
|
|
This provides the basic table structure to the database.
|