Installation#
With the Go toolchain#
go install github.com/codingconcepts/edg@latestDock#
Or pull the Docker image:
docker pull codingconcepts/edg:v0.1.0Images are published for both linux/amd64 and linux/arm64. Pass flags and mount your config file:
docker run --rm \
-v $(pwd)/_examples/tpcc:/config \
codingconcepts/edg:v0.1.0 all \
--driver pgx \
--config /config/crdb.yaml \
--url "postgres://root@host.docker.internal:26257?sslmode=disable"From source#
git clone https://github.com/codingconcepts/edg
cd edg
go build -o edg .