https://github.com/syncfusionexamples/asp-.net-core-with-angular-using-ej2-controls
This sample demonstrates steps to create a simple ASP .NET Core application with Angular Framework and Syncfusion Angular UI components.
https://github.com/syncfusionexamples/asp-.net-core-with-angular-using-ej2-controls
Last synced: 5 months ago
JSON representation
This sample demonstrates steps to create a simple ASP .NET Core application with Angular Framework and Syncfusion Angular UI components.
- Host: GitHub
- URL: https://github.com/syncfusionexamples/asp-.net-core-with-angular-using-ej2-controls
- Owner: SyncfusionExamples
- Created: 2019-11-19T13:06:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-29T16:57:08.000Z (over 1 year ago)
- Last Synced: 2024-07-29T22:46:46.188Z (over 1 year ago)
- Language: TypeScript
- Size: 171 KB
- Stars: 5
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ASP.NET Core with Angular Application
This application demonstrates an ASP.NET Core application with an Angular front end, built using the dotnet CLI, and integrated with the Syncfusion Angular DataGrid component.
To create a new ASP.NET Core with Angular application, refer to this [documentation](https://ej2.syncfusion.com/angular/documentation/getting-started/aspnet-core).
## Clone the repository
* To clone the sample repository locally, open the command prompt in the desired location and execute the following command.
```sh
git clone https://github.com/SyncfusionExamples/ASP-.NET-Core-with-Angular-using-EJ2-controls.git
```
* Navigate to the project directory:
```sh
cd ASP-.NET-Core-with-Angular-using-EJ2-controls
```
* Run the following command to set the environment on Windows.
```sh
SET ASPNETCORE_Environment=Development
```
> For Linux or macOS, run the `export ASPNETCORE_ENVIRONMENT=Development` command in the terminal.
## Installing Packages
Build the application using the following command. It will automatically install the required packages.
```sh
dotnet build
```
## Run the application
To run the application, use the following command:
```bash
dotnet run
```