https://github.com/ronanrodrigo/sensazonal
An application to list sazonal foods by month
https://github.com/ronanrodrigo/sensazonal
clean-architecture solid-principles
Last synced: about 1 year ago
JSON representation
An application to list sazonal foods by month
- Host: GitHub
- URL: https://github.com/ronanrodrigo/sensazonal
- Owner: ronanrodrigo
- Created: 2018-03-02T19:28:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-14T02:44:48.000Z (over 6 years ago)
- Last Synced: 2025-05-13T02:54:37.603Z (about 1 year ago)
- Topics: clean-architecture, solid-principles
- Language: Swift
- Homepage:
- Size: 26.8 MB
- Stars: 17
- Watchers: 1
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Support: Support/Core/AutoMock.stencil
Awesome Lists containing this project
README
# Sensazonal
[](https://github.com/ronanrodrigo/Sensazonal/actions?workflow=Tests)
[](https://codebeat.co/projects/github-com-ronanrodrigo-sensazonal-master)
[](https://codecov.io/gh/ronanrodrigo/Sensazonal/Share)
## Requiremetnts
- Xcode 11.10+
- Homebrew
- Carthage
- SwiftLint
## Setup Enviroment
- Clone the repository:
`git clone git@gitlab.com:ronanrodrigo/Sensazonal.git`
- Access the project folder and run setup script:
`./Support/setup `
## Organization
- Core: A cross-platform package, contains protocol definitions and business rules implementation. Not allowed external dependencies here, all code here should run fast and without influence from third party libraries;
- Share: Also a cross-platform package, but implementing some protocols defined at Core (mostly Gateways). Allowed external dependencies here;
- iOS: Platform-specific code, implementing some protocols from Core (mostly Presenters) and using Share and Core to execute the use cases. In the future, there will be versions for macOS, tvOS, shell, web and others.