https://github.com/tendermint/alpha
Tiny web app to help you form a genesis file
https://github.com/tendermint/alpha
Last synced: 10 months ago
JSON representation
Tiny web app to help you form a genesis file
- Host: GitHub
- URL: https://github.com/tendermint/alpha
- Owner: tendermint
- License: other
- Created: 2018-04-05T17:25:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-23T18:27:50.000Z (almost 8 years ago)
- Last Synced: 2025-07-12T14:55:22.379Z (11 months ago)
- Language: Go
- Size: 89.8 KB
- Stars: 6
- Watchers: 18
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Alpha
Tiny web app to help you form a genesis file

- no logs
- open-source
- 300 lines of code
- single file
## Requirements
Tendermint >= 0.19
## Run it on your server
```
wget https://github.com/tendermint/alpha/raw/master/alpha.go && go run alpha.go
```
If that failed with something like `cannot use pubKey ... as type`, remove
`$GOPATH/src/github.com/tendermint/go-crypto` or run it inside a Docker
container.
OR
```
docker run -it --rm -p "8080:8080" melekes/alpha
```
[Image on Docker Hub](https://hub.docker.com/r/melekes/alpha/)
## Docker
Build docker image:
```
CGO_ENABLED=0 GOOS=linux go build -ldflags "-s -w" -o alpha
docker build -t "your_account/alpha" .
```