Environmentalism

1.0.0

Simple package that loads variables from your DotEnv files.
fborges/Environmentalism

What's New

1.0.0

2019-02-12T04:18:08Z

Environmentalism

Simple package that loads variables from your DotEnv files.

Requirements

  • MacOS or Linux
  • Swift 4+

Installation

You can grab this package through Swift Package Manager:

import PackageDescription

let package = Package(
    name: "Example",
    products: [
      .executable(name: "Example", targets: ["Example"])
    ],
    dependencies: [
      .package(url: "https://github.com/fborges/Environmentalism", from: "1.0.0")
    ],
    targets: [
        .target(
            name: "Example",
            dependencies: ["Environmentalism"]),
    ]
)

Usage

This package has basically One struct that brings up the stuff for you:

import Environmentalism

// Load environment variables from file at specified URL
let env = try! Environment(url: url)

// Supports subscripting
let victories = env["BRAZIL_WORLD_CHAMPION"] -> "5"

// Push all key-value pairs into actual environment variables
env.commit()

Further improvements

... I'll think about this later.

License

MIT License

Description

  • Swift Tools 4.0.0
View More Packages from this Author

Dependencies

  • None
Last updated: Tue Mar 19 2024 16:57:05 GMT-0900 (Hawaii-Aleutian Daylight Time)