Meadowsweet, a simple MVC web framework

A simple MVC web framework implemented on top of Ada Servlet.

https://github.com/rehartmann/meadowsweet

https://github.com/rehartmann/meadowsweet_jintp

4 Likes

Interesting, though it could use a bit of a readme describing its usecases. (ie is it only for web-dev, or is it fully general/generalizable?; does it need anything in particular dependency-wise? what are the assumptions it builds on? and, as it is a framework, how does it ‘springboard’/facilitate composing into your own programs?)

It’s for web development only, similar to Ruby on Rails or Django for Python (however, it lacks a persistence component/ORM). As mentioned in my previous post, it depends on Ada Servlet, so an application requires either AWS or EWS.
The directory samples/phonebook contains a simple example application which uses a vector where a real application would use a database.

1 Like

The sample application now uses a real database (PostgreSQL via GNATCOLL.SQL).

2 Likes