euphemia
v0.1.4
Published
An opinionated web framework
Downloads
1
Readme
Euphemia
An opinionated web framework.
THIS IS VERY WIP IT MAY BE USEABLE, BUT I WOULDN'T TRUST IT!
Services
Services under euphemia provide some high level functionality, they provide abstractions, usually with multiple implementations available. These services provide everything an application will need, if a module needs access to a different database it doesn't implement it itself, it creates either a new service or a new implementation. Services should always be written in a way that allows them to be used in more then one project, this means that they are the shareable parts.
There are a few official services:
- euphemia-redis - Redis based functionality, currently only a store.
Modules
Modules are the project unique parts, they are the system, assets and functionality used by one project, and one project only, things like styles, images or special rendering code. Modules should strive to use modules for most things, not do jobs themselves that could be done, but they are allowed to do so if it is the only feaseable option.