alexey-gorshkov / aspnet5-angular2-typescript

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

Home Page:http://wp.me/p3mRWu-11L

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 typings
    • 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
      • typings 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. dotnet ef migrations add initial
      2. dotnet 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. Install the csharp extension from here
    3. Download the source code and open the src/PhotoGallery folder in Visual Studio Code.
    4. 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
      • typings install
      • bower install
      • gulp build-spa
    5. Run the following command to restore Nuget Packages (dependencies)
      • dotnet restore
    6. Application uses SQL Server so in case you want to change this, you need to alter the corresponding parts (more info here).
    7. Open appsettings.json file and alter the database connection string to reflect your SQL Server environment.
    8. 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. dotnet ef migrations add initial
      2. dotnet ef database update
    9. Host your application using Kestrel by typing the following command while at src/PhotoGallery:
      • dotnet run
    10. Open a browser and navigate to http://localhost:5000/
    11. You can use username: chsakell and password: photogallery to sign in or register a new user.

    Donations

    For being part of open source projects and documenting my work here and on chsakell's blog I really do not charge anything. I try to avoid any type of ads also.

    If you think that any information you obtained here is worth of some money and are willing to pay for it, feel free to send any amount through paypal.

    Paypal
    Buy me a beer

    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

http://wp.me/p3mRWu-11L

License:MIT License


Languages

Language:C# 47.8%Language:HTML 23.7%Language:TypeScript 20.0%Language:JavaScript 4.4%Language:CSS 4.1%