mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-13 03:35:17 +00:00
Add docs and expose vouchers from container with make participate
This commit is contained in:
parent
a3dfb69ebf
commit
c0e9e12a27
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
.idea/
|
.idea/
|
||||||
|
vouchers/
|
||||||
ceremony-client
|
ceremony-client
|
||||||
quil_voucher.hex
|
quil_voucher.hex
|
4
Makefile
4
Makefile
@ -6,8 +6,8 @@ build-docker:
|
|||||||
bash:
|
bash:
|
||||||
docker run --rm -it $(IMAGE_TAG) bash
|
docker run --rm -it $(IMAGE_TAG) bash
|
||||||
|
|
||||||
participate:
|
participate: build-docker
|
||||||
docker run --rm -it $(IMAGE_TAG) ./ceremony-client "quill-voucher-$(shell date +'%y.%m.%d-%H:%M:%S')"
|
docker run --rm -it -v $(PWD)/vouchers:/vouchers $(IMAGE_TAG) ./ceremony-client "/vouchers/quill-voucher-$(shell date +'%m.%d.%y-%H:%M:%S').hex"
|
||||||
|
|
||||||
dev:
|
dev:
|
||||||
docker run --rm -it -v $(PWD):$(PWD) --workdir $(PWD) $(IMAGE_TAG) bash
|
docker run --rm -it -v $(PWD):$(PWD) --workdir $(PWD) $(IMAGE_TAG) bash
|
@ -1,3 +1,9 @@
|
|||||||
# ceremonyclient
|
# ceremonyclient
|
||||||
|
|
||||||
KZG Ceremony client for Quilibrium. Run with `go run ./... <voucher_filename>` or omit the filename to write to quil_voucher.hex.
|
KZG Ceremony client for Quilibrium.
|
||||||
|
|
||||||
|
# Running
|
||||||
|
|
||||||
|
Run with `go run ./... <voucher_filename>` or omit the filename to write to quil_voucher.hex.
|
||||||
|
|
||||||
|
If you have docker installed you can participate in the ceremony by simply running `make participate`. Your voucher will be written to `vouchers/`.
|
Loading…
Reference in New Issue
Block a user