- Xcode 11.10+
- Homebrew
- Carthage
- SwiftLint
- Clone the repository:
git clone git@gitlab.com:ronanrodrigo/Sensazonal.git
- Access the project folder and run setup script:
./Support/setup
- 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.