ReadyRemitEnvironment
A configured space that includes infrastructure, settings, and data to support a specific stage of the development lifecycle
Definition
public enum ReadyRemitEnvironment: Sendable {
case production
case sandbox
}Cases
| Case | Description |
|---|---|
| production | The live environment where real users interact with your application |
| sandbox | A safe, isolated environment designed for development, testing, and experimentation |
Default
public extension ReadyRemitEnvironment {
static let `default`: Self = .sandbox
}private let environment: ReadyRemitEnvironment = .defaultSample Usage
private let environment: ReadyRemitEnvironment = .sandboxUpdated about 2 months ago
