This is a successor project for the original RxGithub using SwiftUI and The Composable Architecture (TCA) using its companion Dependencies package for dependency injection.
- Xcode 14.2 or later
- GitHub personal access token
- Download the source code or clone the repository.
- Get a free personal access token from GitHub.
- Create a swift file named
Key.swift
with the following content in theTCAGithub
folder in the project, The string"TOKEN"
should be replaced with your own personal access token:
Key.swift
import Foundation
enum Key {
static var github: String {
"TOKEN"
}
}