golemfactory / yagna-docs

Documentation for yagna
GNU General Public License v3.0
4 stars 3 forks source link

update download instructions for dapps tutorials to use wget instead of curl #176

Closed shadeofblue closed 1 year ago

shadeofblue commented 1 year ago

On windows, downloading dapp-runner configs should be wget https://raw.githubusercontent.com/golemfactory/dapp-runner/main/configs/default.yaml -outfile config.yaml

approxit commented 1 year ago

As discussed offline, having kinda-linux command example crafted only for windows (where wget is alias for powershell's Invoke-WebRequest) could be confusing.

Let's use direct powershell syntax:

Invoke-WebRequest -Uri "https://raw.githubusercontent.com/golemfactory/dapp-runner/main/configs/default.yaml" -OutFile "config.yaml"

Also, we could mention to download that file via graphical interface... :)