OBSOLETE - see readme
Перейти к файлу
Suhas Joshi 47c8837a6a Updated with clone repo instruction 2014-11-11 14:58:55 -08:00
src/BugTracker Updated Program.cs with webroot 2014-09-17 11:18:46 -07:00
.gitattributes Checking in an initial version of Bug tracker on K 2014-03-24 16:07:58 -07:00
.gitignore Checking in an initial version of Bug tracker on K 2014-03-24 16:07:58 -07:00
BugTracker.sln Updated IBuilder and added webroot 2014-09-17 11:05:08 -07:00
Clean.cmd Checking in an initial version of Bug tracker on K 2014-03-24 16:07:58 -07:00
LICENSE.txt Create LICENSE.txt 2014-05-08 16:32:49 -07:00
README.md Updated with clone repo instruction 2014-11-11 14:58:55 -08:00

README.md

BugTracker application

This project is part of ASP.NET vNext. You can find samples, documentation and getting started instructions for ASP.NET vNext at the Home repo. The equivalent MVC5 project is in https://bitbucket.org/howarddierking/demo-katana-bugs.

Clone the repo

  • Clone the repo using git command on the local machine.

Run the application on Helios:

  • If you have Visual Studio 2015
    1. Open BugTracker.sln in Visual Studio 2015 and run the application.
  • If you don't have Visual Studio 2015, make sure to install KRE on the machine
    1. Open a command prompt and cd \src\BugTracker\
    2. Execute kpm restore to restore all the necessary packages.
    3. Execute Helios.cmd to launch the app on IISExpress from command line (Application started at URL http://localhost:5001/).

Run on WebListener/Kestrel:

  • Open a command prompt and cd \src\BugTracker\
  • [WebListener]: 4. Run k WebListener (Application started at URL http://localhost:5002/)
  • [Kestrel]: 5. Run k Kestrel (Application started at URL http://localhost:5004/)
  • [CustomHost]: 6. Run k run (This hosts the app in a console application - Application started at URL http://localhost:5003/)

To run the sample on Mac/Mono:

  • Follow Home instructions to install mono, kvm on Mac
  • Open a command prompt and cd \src\BugTracker\
  • Execute ``kpm restore```
  • Try k Kestrel to run the application

Note:

  1. Application is started on different ports on different hosts. To change the port or URL modify Helios.cmd or project.json commands section in case of self-host and customhost.