-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Rick Cogley edited this page Nov 9, 2024
·
6 revisions
Welcome to the julie_portfolio wiki!
This is the repo for Julie Cogley's portfolio site, generated by «Lume ルメ» using Vento templates, and hosted on Deno Deploy as static files. Many thanks to Óscar Otero, creator of Lume, Lume CMS, and Vento, for his great work coding useful tools, and for his help answering questions. 🙏🏻
- Production Site: https://julie.cogley.jp
- CMS: https://cms.julie.cogley.jp
- Font: M PLUS 2 via Google Fonts
- Icons: from Phosphor
- CSS base library: Tachyons
Site notes:
Using lume to build site and hosting on deno deploy.
Sitemap priority - 1.0 highest, 0 lowest.
graph LR
API((API)) -- asks --> Domain((Domain))
Domain((Domain)) -- asks --> Data((Data))
Domain((Domain)) -- holds --> UseCases
Domain((Domain)) -- holds --> ProviderInterfaces
Data((Data)) -- holds --> DataProviders
subgraph DataLayer
ConcreteDataProvider -- abstracts --> Sources((Data Sources))
end
subgraph DomainLayer
ConcreteUseCase -- uses --> ConcreteProviderInterface
ConcreteProviderInterface -- generalizes --> ConcreteDataProvider
end
subgraph ApiLayer
ConcreteController -- uses --> ConcreteUseCase
end