Creating Web Applications
Version 0.15 ∙ 1 minute read
Request-Response Loop
Divide your application into areas, typically, front, admin and API areas. Think through all possible requests your application can receive from a browser, and implement regular or dynamic routes that return proper responses. Apply advices that alter request processing globally, or within a specific area.
Themes And Assets
Out of the box, Osm Framework support multiple themes. It means that you can completely change look and feel of the website by changing a single setting - the current theme name.
A theme is basically a named collection of assets - Blade templates, CSS styles, JavaScript files, images, and other files that render the website. Theme assets are collected and built using gulp
and gulp watch
commands.