https://github.com/rowellx68/aureliadotnetcore
A simple skeleton app with Aurelia for the front-end and dotnet core for the backend.
https://github.com/rowellx68/aureliadotnetcore
aurelia dotnet-core sass typescript webpack2
Last synced: 2 months ago
JSON representation
A simple skeleton app with Aurelia for the front-end and dotnet core for the backend.
- Host: GitHub
- URL: https://github.com/rowellx68/aureliadotnetcore
- Owner: rowellx68
- Created: 2017-03-10T22:27:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-24T16:14:55.000Z (about 9 years ago)
- Last Synced: 2025-05-15T08:44:58.342Z (about 1 year ago)
- Topics: aurelia, dotnet-core, sass, typescript, webpack2
- Language: C#
- Size: 526 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AureliaDotNetCore
A simple skeleton app with Aurelia for the front-end and dotnet core for the backend.
## Get Started
To get started, navigate into `Web` and do the following commands
```bash
npm install
dotnet restore
npm run build
```
There will be no need to manually build the single page app everytime you make changes as it will do it on the fly. However, you will need to run the app like so on your terminal. You will need to pass the environment variable based on your system, more information can be found [here](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/environments);
```bash
ASPNETCORE_ENVIRONMENT=Development dotnet run
```