package
0.0.0-20170404101818-12def25b6a92
Repository: https://github.com/mwitkow/go-flagz.git
Documentation: pkg.go.dev

# README

Simple CLI demo

This demonstrates how dynamic values are being updated in a simple CLI app.

Quick set up:

Download etcd, extract and make it available on your $PATH.

Launch etcd server serving from a default.data in /tmp:

cd /tmp
etcd 

Set up a set of flags:

etcdctl mkdir /example/flagz
etcdctl set /example/flagz/staticint 9090
etcdctl set /example/flagz/dynstring foo

Play around by launching the server and visitng http://localhost:8080:

./simplesrv &
etcdctl set /example/flagz/example_my_dynamic_string "I'm santient"
etcdctl set /example/flagz/example_my_dynamic_int 12345

Marvel at the flagz endpoint).