MeyCoin Server
Using Docker
The easiest way to run a local MeyCoin server is using Docker. An up-to-date Docker image is always available on Docker Hub.
$ docker run -p 7845:7845 meycoin/nodeYou can pass arguments to the server like this:
$ docker run -p 7845:7845 meycoin/node meycoinsvr --testmodeTo supply your own config file, use:
$ docker run -p 7845:7845 -v $(pwd)/config.toml:/meycoin/config.toml meycoin/node meycoinsvr --config /meycoin/config.tomlBuilding from source
Prerequisites
Go1.12.5+ - https://golang.org/dl
CMake 3.0.0 or higher - https://cmake.org
Optional: Protobuffer - https://github.com/google/protobuf
Linux
1.Install dependencies
sudo apt update
sudo apt upgrade
sudo apt install build-essential libssl-dev m4 -y2.Install CMake
3.Install Go
4.Install MeyCoin Server
MacOS
1.If you haven’t already, install homebrew.
2.Install dependencies
3.Set environment
4.Install MeyCoin Server
Run Server
Last updated