All Projects → DavidBenko → DBEnvironmentConfiguration

DavidBenko / DBEnvironmentConfiguration

Licence: MIT license
Easily switch between iOS development environments/ configurations

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to DBEnvironmentConfiguration

Sweet
Official repository for Semantic Web for Earth and Environmental Terminology (SWEET) Ontologies
Stars: ✭ 69 (+283.33%)
Mutual labels:  environment, environment-variables
Fig
A minimalist Go configuration library
Stars: ✭ 142 (+688.89%)
Mutual labels:  environment, environment-variables
Conf
Go package for loading program configuration from multiple sources.
Stars: ✭ 70 (+288.89%)
Mutual labels:  environment, environment-variables
Phpdotenv
Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.
Stars: ✭ 11,648 (+64611.11%)
Mutual labels:  environment, environment-variables
Environ Config
Python Application Configuration With Environment Variables
Stars: ✭ 210 (+1066.67%)
Mutual labels:  environment, environment-variables
Env
Simple lib to parse environment variables to structs
Stars: ✭ 2,164 (+11922.22%)
Mutual labels:  environment, environment-variables
Envinject Plugin
This plugin makes it possible to setup a custom environment for your jobs
Stars: ✭ 74 (+311.11%)
Mutual labels:  environment, environment-variables
gatsby-plugin-dynamic-routes
Creating dynamic routes based on your environment and/or renaming existing routes
Stars: ✭ 14 (-22.22%)
Mutual labels:  environment, environment-variables
Env Var
Verification, sanitization, and type coercion for environment variables in Node.js
Stars: ✭ 201 (+1016.67%)
Mutual labels:  environment, environment-variables
Emacs Direnv
direnv integration for emacs
Stars: ✭ 194 (+977.78%)
Mutual labels:  environment, environment-variables
envy
Use envy to manage environment variables with your OS keychain
Stars: ✭ 23 (+27.78%)
Mutual labels:  environment, environment-variables
ini
📝 Go INI config management. support multi file load, data override merge. parse ENV variable, parse variable reference. Dotenv file parse and loader. INI配置读取管理,支持多文件加载,数据覆盖合并, 解析ENV变量, 解析变量引用。DotEnv 解析加载
Stars: ✭ 72 (+300%)
Mutual labels:  environment, environment-variables
angular-environment
AngularJS Environment Plugin
Stars: ✭ 78 (+333.33%)
Mutual labels:  environment, environment-variables
Variable Injector
Continuous Integration Tool for Swift Projects
Stars: ✭ 63 (+250%)
Mutual labels:  environment, environment-variables
envmnt
Environment variables utility functions.
Stars: ✭ 16 (-11.11%)
Mutual labels:  environment, environment-variables
Env Providers
👷 Load Laravel service providers based on your application's environment.
Stars: ✭ 73 (+305.56%)
Mutual labels:  environment, environment-variables
ngx-env
Easily inject environment variables into your Angular applications
Stars: ✭ 73 (+305.56%)
Mutual labels:  environment, environment-variables
ts-dotenv
Strongly-typed environment variables for Node.js
Stars: ✭ 18 (+0%)
Mutual labels:  environment, environment-variables
Envy
Envy automatically exposes environment variables for all of your Go flags
Stars: ✭ 150 (+733.33%)
Mutual labels:  environment, environment-variables
dotenvy
Speed up your production sites by ditching .env for key/value variable pairs as Apache, Nginx, and shell equivalents
Stars: ✭ 31 (+72.22%)
Mutual labels:  environment, environment-variables

DBEnvironmentConfiguration

Overview

Super-simple environment configuration for iOS apps. Set environment variables that switch automagically based on build type or set an environment with one line of code.

Installation

Via CocoaPods
  • Add pod 'DBEnvironmentConfiguration' to your podfile
  • Run pod install
  • Import header (#import <DBEnvironmentConfiguration/DBEnvironmentConfiguration.h>)
Manual Installation
  • Add DBEnvironmentConfiguration folder to your project
  • Import header (#import "DBEnvironmentConfiguration")

Environment File

File Format

  • Supported formats include .json and .plist.
  • Default configuration file is environments.json
Example JSON file:
{
    "Development": {
        "base_url": "https://dev.mycompany.com",
        "api_version": "5"
    },
    "Staging": {
        "base_url": "https://stage.mycompany.com",
        "api_version": "3"
    },
    "Production": {
        "base_url": "https://mycompany.com",
        "api_version": "3"
    }
}

Example

[DBEnvironmentConfiguration setEnvironment:@"Staging"]; // Set Environment (Defaults to 'Development')
NSString *baseURL = [DBEnvironmentConfiguration valueForKey:@"base_url"]; // Done 

Environment Detection

DBEnvironmentConfiguration can detect the build type of the application. You can map these build types to environments so that the environments will switch automatcially.

Possible build types:

    DBBuildTypeUndetermined,
    DBBuildTypeSimulator,
    DBBuildTypeDebug,
    DBBuildTypeAdHoc,
    DBBuildTypeAppStore,
	DBBuildTypeEnterprise

You can map build types individually or as one NSDictionary *.

    // Individual mapping
    [DBEnvironmentConfiguration setEnvironment:@"Development" forBuildType:DBBuildTypeSimulator];
    
    // Map all environments at once
    [DBEnvironmentConfiguration setEnvironmentMapping:@{
                                                        [NSNumber numberWithInt:DBBuildTypeSimulator]     : @"Development",
                                                        [NSNumber numberWithInt:DBBuildTypeDebug]         : @"Development",
                                                        [NSNumber numberWithInt:DBBuildTypeAdHoc]         : @"Staging",
                                                        [NSNumber numberWithInt:DBBuildTypeAppStore]      : @"Production",
                                                        [NSNumber numberWithInt:DBBuildTypeEnterprise]    : @"Production"
                                                        }];

Setting the environment manually by calling setEnvironment: will turn off environment detection. You can also enable/disable environment detection by calling setEnvironmentDetection:.

Shorthand

DBEnvironmentConfiguration allows shorthand to get environment variables and to set the environment. To turn on the shorthand, define _DBEC_SHORTHAND_ before importing the header.

Turn on environment variable shorthand
    #define _DBEC_SHORTHAND_                    // Set before importing header
    #import <DBEnvironmentConfiguration/DBEnvironmentConfiguration.h> 

...

    SET_BUILD_ENVIRONMENT(@"Staging");          // Set the environment
    SET_ENVIRONMENT_MAPPING(@{@2:@"Staging"});  // Map environments
    NSString *baseURL = ENV(@"base_url");       // Get environment variables 

License

The MIT License (MIT)

Copyright (c) 2014 David Benko

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].