From 21f5c94cff8af12c1392bf5bfc042994c30ae8f3 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 6 Mar 2018 09:18:00 -0500 Subject: [PATCH] update readme --- README.md | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a0140451f..1f81be123 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,26 @@ You can also checkout [The Merchants Guide to accepting Bitcoin directly with no While the documentation advise using docker-compose, you may want to build yourself outside of development purpose. +On Powershell: ``` -cd BTCPayServer -dotnet build -c Release +.\build.ps1 +``` + +On linux: +``` +.\build.sh ``` ## How to run +Use the `run` scripts to run BTCPayServer, this example show how to print the available command line arguments of BTCPayServer. + +On Powershell: ``` -dotnet run --no-launch-profile --no-build -c Release -- [btcpay's args] +.\run.ps1 --help +``` + +On linux: +``` +.\run.sh --help ```