Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iteam1337/vnext-age-web
https://github.com/iteam1337/vnext-age-web
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/iteam1337/vnext-age-web
- Owner: Iteam1337
- Created: 2015-05-18T16:42:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-22T12:24:53.000Z (over 9 years ago)
- Last Synced: 2024-04-14T11:04:24.679Z (7 months ago)
- Language: C#
- Size: 488 KB
- Stars: 0
- Watchers: 21
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vnext-age-web
This is so cool!
Read more about aspnet here: https://github.com/aspnet/home
*Mac OS*
Install the necessary stuff via brew.
```
brew tap aspnet/dnx
brew update
brew install dnvm
```Run.
```
source dnvm.sh;
dnvm upgrade; # This makes dnu and dnx available in your current shell
dnu restore; # Downloads MyGet (nuget) packages defined in project.json
dnx . kestrel; # Runs the code so that you can access it at http://localhost:5004
```*Linux*
Pretty much the same as above, only you need to install mono and dnvm for your disto.
*Docker*
```
sh deploy.sh # Magic!
```*Windows*
Setup
```
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"
```Run
```
dnx . web
```