ExFlag

Goals:

Non-Goals (right now)

python server

#!/usr/bin/python3

from flask import Flask, request


app = Flask(__name__)
@app.route("/flags", methods=['POST'])
def get_flag():
    r_body = request.get_json()
    print(r_body)
    flag_key = r_body["key"]
    options = r_body["opts"]
    env = options.get("environment")

    if env == "production":
        return "{\"value\": \"on\"}", 200
    else:
        return "{\"value\": \"off\"}", 200

Usage

Installation

If available in Hex, the package can be installed by adding exflag to your list of dependencies in mix.exs:

def deps do
  [
    {:exflag, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/exflag.