Skip to content

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

License

Notifications You must be signed in to change notification settings

zinderud/aspnet5-angular2-typescript

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASP.NET Core, Angular 4 & TypeScript

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

aspnet5-agnular2-03

Frameworks - Tools - Libraries

  • ASP.NET Core
  • Entity Framework Core
  • Automapper
  • Angular 4
  • 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 2017, only for Windows users)

    1. Download and install Visual Studio 2017 from here.
    2. Open Visual Studio 2017 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 2017 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. 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
      • 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 run the app in Linux or MAC simply set "InMemoryProvider": true in appsettings.json and skip to the last 3 steps to run the app.
    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.

    Microsoft Azure Deployment

    Learn how to deploy the PhotoGallery app on Microsoft Azure here.

    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

    License

    Code released under the MIT license.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 45.8%
  • HTML 24.2%
  • TypeScript 20.4%
  • JavaScript 5.4%
  • CSS 4.2%