Skip to content

Angel98518/local-sperseapp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASP.NET ZERO - Angular 2 UI

This is Angular 2 UI for AspNet Zero. It's in PREVIEW state and is constantly being improved and changed. So, don't use it in production, but you can test it and check source to prepare to the coming release.

Prerequirements

*ASP.NET Core (Windows (x64) Installer - .NET Core 1.1.1 runtime (Current)) https://www.microsoft.com/net/download/core#/runtime

IDE

Project is IDE and OS independent. That means you can develop in Windows/Linux/Mac with any editor. We developed it with Visual Studio 2015 and Visual Studio Code. We are best comfortable with Visual Studio 2015 with Resharper 2016.3 EAP.

How To Run?

UI uses AspNet Zero (ASP.NET Core version) as backend. So, you should first run it:

Once server side is ready, you can run the Angular2 application:

  • Go to root folder of the Angular2 project (the folder contains package.json file) and run yarn from command line one time to restore all packages (or RestorePackages.cmd).
  • Run npm start from command line to run angular-cli server. Wait webpack to finish it's work.
  • Visit http://localhost:7200 in your browser. User: admin Password: Qwertyuiop1

Localhost with SSL by @DT

  • run npm run start-staging-ssl or create the same for start but you need localhost:7000 with https
  • for fixing warning in browser you can update angular.json and maybe add certificate in trusted
  • add code below
"serve": {
  "builder": "@angular-devkit/build-angular:dev-server",
  "options": {
    "browserTarget": "abp-zero-template:build",
    "ssl": true,
    "sslKey": "ssl/server.key",
    "sslCert": "ssl/server.crt"
  },

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 72.6%
  • TypeScript 15.6%
  • HTML 4.4%
  • Less 3.6%
  • SCSS 2.3%
  • JavaScript 1.5%