Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,12 @@ The samples in this repo are basic starting points for you to experiment with.

1. Clone the Home repository
2. Change directory to the folder of the sample you want to run
3. Run ```dnu restore``` to restore the packages required by that sample.
3a. If using KRE: Run ```kpm restore``` to restore the packages required by the sample.
3b. If using DNX: Run ```dnu restore``` to restore the packages required by the sample.
4. You should see a bunch of output as all the dependencies of the app are downloaded from MyGet.
5. Run the sample using the appropriate K command:
- For the console app run ```k run```.
- For the web apps run ```k web``` on Windows or ```k kestrel``` on Mono.
5. Run the sample using the appropriate `dnx` or `k` command:
- For the console app, run ```dnx . run``` or ```k run```.
- For the web apps, run ```dnx . web``` or ```k web``` on Windows and ```dnx . kestrel``` or ```k kestrel``` on Mono.
6. You should see the output of the console app or a message that says the site is now started.
7. You can navigate to the web apps in a browser by going to "http://localhost:5001" or "http://localhost:5004" if running on Mono.

Expand Down