From 1dcaab11c8cd3ab7b3f0023e52bf9b1e3587181a Mon Sep 17 00:00:00 2001 From: surtur Date: Sat, 21 Nov 2020 14:20:30 +0100 Subject: [PATCH] chore: update README.md with run instructions --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 2b8989c..748c183 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,19 @@ # pwt-0x01-ng this repo holds *sawce* for PWT .netcore mvc project 0x01-ng + +### how to run this +> run the following commands from the solution folder + +on the first run, restore stuff +```sh +dotnet restore +``` + +build and run +```sh +dotnet build && dotnet run +``` +#### errors +if you get a weird long error about not being able to listen bind a port, make sure nothing else is listening on the port *this* thing is trying to bind (tcp/5000). +if something else *is* already listening, solve it by killing it before running `dotnet run` or change the app port in [[Properties/launchSettings.json]]