Skip to content

KrishnaNellutla/aspnet5-angular2-typescript

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cross-platform Single Page Applications using ASP.NET Core, Angular 2 and Typescript

aspnet5-agnular2-03

Frameworks - Tools - Libraries

  • ASP.NET Core
  • ASP.NET MVC 6
  • Entity Framework 7
  • Automapper
  • Angular 2
  • Typescript
  • Bootstrap 3
  • Gulp
  • Bower

Installation instructions - Part 1 (Applied for Windows/Linux/MAC)

  1. Install ASP.NET Core according to your development environment from here.
  2. Install NPM by installing Node.js.
  3. Install Bower, Gulp, Typescript and Typescript Definition Manager globally by typing the following commands on the console/terminal:
    • npm install -g bower
    • npm install -g gulp
    • npm install -g typescript
    • npm install -g tsd
  4. Installation instructions - Part 2 (Run application in Visual Studio 2015, only for Windows users)

    1. Download and install Visual Studio 2015 from here.
    2. Open Visual Studio 2015 and install any update related to ASP.NET Core (check the notifications).
    3. Download the source code and open the solution.
    4. By the time you open the solution, VS 2015 will try to restore Nuget, NPM and Bower packages.
    5. In case it fails to restore NPM and Bower packages, open a console and navigate at the src/PhotoGallery path where the package.json and bower.json files exist. Run the following commands:
      • npm install
      • bower install
      • gulp build-spa
    6. Open appsettings.json file and alter the database connection string to reflect your SQL Server environment.
    7. Open a console and navigate to src/PhotoGallery where the project.json exists. Run the following commands to enable migrations and create the database:
      1. dnx ef migrations add initial
      2. dnx ef database update
    8. Build your application and run it. You can use username: chsakell and password: photogallery to sign in or register a new user.

    Installation instructions - Part 2 (Run application in Visual Studio Code, recommended for Linux/MAC users)

    1. Download and install Visual Studio Code from here.
    2. Download the source code and open the src/PhotoGallery folder in Visual Studio Code.
    3. Open a console/terminal and navigate at the src/PhotoGallery path where the package.json and bower.json files exist. Run the following commands:
      • npm install
      • bower install
      • gulp build-spa
    4. Run the following command to restore Nuget Packages:
      • dnu restore
    5. Application uses SQL Server so in case you want to change this, you need to alter the corresponding parts (more info here).
    6. Open appsettings.json file and alter the database connection string to reflect your SQL Server environment.
    7. Open a console/terminal and navigate to src/PhotoGallery where the project.json exists. Run the following commands to enable migrations and create the database:
      1. dnx ef migrations add initial
      2. dnx ef database update
    8. Host your application using Kestrel by typing the following command while at src/PhotoGallery:
      • dnx web
    9. Open a browser and navigate to http://localhost:5000/
    10. You can use username: chsakell and password: photogallery to sign in or register a new user.

    Follow chsakell's Blog

    Facebook Twitter
    Microsoft Web Application Development
    facebook twitter-small

About

Cross-platform Single Page Applications with ASP.NET Core, Angular 2 & TypeScript

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 47.8%
  • HTML 24.0%
  • TypeScript 19.5%
  • JavaScript 4.6%
  • CSS 4.1%