soyking / e3w

etcd v3 Web UI
MIT License
589 stars 111 forks source link
etcd golang react ui

e3w

etcd v3 Web UI based on Golang && React, copy from consul ui :)

supporting hierarchy on etcd v3, based on e3ch

Quick Start

git clone https://github.com/soyking/e3w.git
cd e3w
docker-compose up
# open http://localhost:8080

Or use docker image by docker pull soyking/e3w, more details in Dockerfile and docker-compose.yml

Overview

KEY/VALUE

MEMBERS

ROLES

USERS

SETTING

Usage

1.Fetch the project go get github.com/soyking/e3w

2.frontend

cd static
npm install
npm run publish

3.backend

a. Start etcd, such as goreman

b. Edit conf/config.default.ini if needed, go build && ./e3w

c. For auth:

ETCDCTL_API=3 etcdctl auth enable
# edit conf/config.default.ini[app]#auth
./e3w
# you could set your username and password in SETTING page

4.build image

Install dependencies in 3.b, then run docker build -t soyking/e3w .

Notice