An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Sensazonal
[![Actions Status](https://github.com/ronanrodrigo/Sensazonal/workflows/Tests/badge.svg)](https://github.com/ronanrodrigo/Sensazonal/actions?workflow=Tests)
[![codebeat badge](https://codebeat.co/badges/ebde7674-9efe-4081-a066-1d2de4e5301a)](https://codebeat.co/projects/github-com-ronanrodrigo-sensazonal-master)
[![codecov](https://codecov.io/gh/ronanrodrigo/Sensazonal/branch/master/graph/badge.svg)](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.