github.com/github.com/Digipolitan/runtime-environment


Keywords
env, environment, environment-variables, json, plist, runtime, swift
License
BSD-3-Clause

Documentation

RuntimeEnvironment

Build Status CocoaPods Compatible Carthage Compatible Platform Twitter

RuntimeEnvironment manage all your environment variable with a specific environment set in your Info.plist file

Installation

CocoaPods

To install RuntimeEnvironment with CocoaPods, add the following lines to your Podfile.

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0' # or platform :osx, '10.10' if your target is OS X.
use_frameworks!

pod 'RuntimeEnvironment'

The Basics

First you must set the environment mode in your Info.plist file

<key>Environment</key>
<string>production</string>

Authorized environment value are development, staging, production

After that, at runtime you must register all your variable as follow:

let env = RuntimeEnvironment.shared
env.set("API_KEY", "dsdqsiIDNSIQUdiusqdDSQ")

Advanced

Variable from dictionary

You can set multiple variable at once using dictionary

let env = RuntimeEnvironment.shared
env.set([
  "secure": true,
  "baseUrl": "http://localhost"
  ])

Variable from file

2 file format are available: json & plist

let env = RuntimeEnvironment.shared
env.setFile("env.prod", format: .json)

Contributing

See CONTRIBUTING.md for more details!

This project adheres to the Contributor Covenant Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to contact@digipolitan.com.

License

RuntimeEnvironment is licensed under the BSD 3-Clause license.