You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will need to sign a [Contributor License Agreement](https://cla.msopentech.com) before submitting your pull request. To complete the Contributor License Agreement (CLA), you will need to submit a request via the form and then electronically sign the Contributor License Agreement when you receive the email containing the link to the document. This needs to only be done once for any Microsoft Open Technologies OSS project.
48
+
You will need to sign a [Contributor License Agreement](https://cla2.dotnetfoundation.org/) before submitting your pull request. To complete the Contributor License Agreement (CLA), you will need to submit a request via the form and then electronically sign the Contributor License Agreement when you receive the email containing the link to the document. This needs to only be done once for any .NET Foundation OSS project.
49
49
50
50
Make sure you can build the code. Familiarize yourself with the project workflow and our coding conventions. If you don't know what a pull request is read this article: https://help.github.com/articles/using-pull-requests.
Copy file name to clipboardExpand all lines: README.md
+15-2Lines changed: 15 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,8 +47,21 @@ brew tap aspnet/dnx
47
47
brew update
48
48
brew install dnvm
49
49
```
50
+
51
+
Add dnvm to your bash profile (./bash_profile)
52
+
```bash
53
+
source dnvm
54
+
```
55
+
56
+
50
57
Note that on Windows the .NET Framework is already installed, whereas on OS X the brew formula uses a particular version of [Mono](http://www.mono-project.com/) that we know works with ASP.NET 5.
51
58
59
+
To verify that everything works run the `dnvm` command.
60
+
61
+
Should that fail, for example with `-bash: dnvm: command not found`, run the command `source dnvm.sh`. This means that `dnvm` will be available in this session.
62
+
63
+
To make sure `dnvm` is available for *every* session, add the command to your `~/.bashrc` with the following command `echo "source dnvm.sh" >> ~/.bashrc`.
64
+
52
65
## Linux
53
66
54
67
*[Debian, Ubuntu and derivatives see here](GettingStartedDeb.md)
@@ -74,7 +87,7 @@ You should also be able to run `dnx` and see the help text of the `dnx` command.
74
87
2. Change directory to the folder of the sample you want to run
75
88
3. Run ```dnu restore``` to restore the packages required by that sample.
76
89
4. You should see a bunch of output as all the dependencies of the app are downloaded from MyGet.
77
-
5. Run the sample using the appropriate K command:
90
+
5. Run the sample using the appropriate DNX command:
78
91
- For the console app run `dnx . run`.
79
92
- For the web apps run `dnx . web` on Windows or `dnx . kestrel` on OS X/Linux.
80
93
6. You should see the output of the console app or a message that says the site is now started.
@@ -110,5 +123,5 @@ A description of all the repos is [here](https://github.com/aspnet/Home/wiki/Rep
110
123
111
124
# Feedback
112
125
113
-
Check out the [contributing](https://github.com/aspnet/Home/blob/release/CONTRIBUTING.md) page to see the best places to log issues and start discussions.
126
+
Check out the [contributing](CONTRIBUTING.md) page to see the best places to log issues and start discussions.
0 commit comments