This fork is an attempt to provide embedding static assets as requested in evnix#9.
A simple web based boltdb GUI Admin panel.
go get github.com/gin-gonic/gin
go get github.com/boltdb/bolt/...
go get github.com/evnix/boltdbweb
cd $GOPATH/src/github.com/evnix/boltdbweb
go build boltdbweb.go
Optional
sudo mv boltdbweb /usr/bin
boltdbweb --db-name=<DBfilename>[required] --port=<port>[optional] --static-path=<static-path>[optional]
--db-name:
The file name of the DB.- NOTE: If 'file.db' does not exist. it will be created as a BoltDB file.
--port:
Port for listening on... (Default: 8080)
boltdbweb --db-name=test.db --port=8089
Goto: http://localhost:8089