update readme

This commit is contained in:
nicolas.dorier 2018-03-06 09:18:00 -05:00
parent 834ba4afab
commit 21f5c94cff

View file

@ -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. While the documentation advise using docker-compose, you may want to build yourself outside of development purpose.
On Powershell:
``` ```
cd BTCPayServer .\build.ps1
dotnet build -c Release ```
On linux:
```
.\build.sh
``` ```
## How to run ## 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
``` ```