https://github.com/hryurt/datingapp
A dating app project with .NET Core and Angular 10.
https://github.com/hryurt/datingapp
angular asp-net-core
Last synced: 2 months ago
JSON representation
A dating app project with .NET Core and Angular 10.
- Host: GitHub
- URL: https://github.com/hryurt/datingapp
- Owner: Hryurt
- Created: 2020-06-18T18:59:27.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T20:57:09.000Z (over 3 years ago)
- Last Synced: 2025-01-20T10:24:48.754Z (over 1 year ago)
- Topics: angular, asp-net-core
- Language: TypeScript
- Homepage:
- Size: 1.24 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DatingApp
It is a project for training .NET Core Web APIs and Angular 10. Hence, the repository has two main folders: DatingApp-SPA and DatingApp.API. Designing the backend side is made by a general .NET structure. For the frontend side, no specific design pattern is used.
The general theme of the project is dating. A user can list other users, monitor others’ profiles, create, edit and delete his/her profile.
## Before Running
Before installing this program, follow the instructions below. (If you have already installed these requirements, disregard this part.)
* Install .NET SDK 3.1+ [here](https://dotnet.microsoft.com/download/dotnet/3.1)
* Install Node.js [here](https://nodejs.org/en/)
* Install Angular by using the command below.
```
npm install - g @angular/cli
```
* Install EF Core by using the command below.
```
dotnet add package Microsoft.EntityFrameworkCore.SqlServer
```
## How To Run
* Use the dotnet restore command for package management in the DatingApp.API folder.
```
dotnet restore
```
* Use the npm install command for module management in the DatingApp-SPA folder.
```
npm install
```
* Start .NET with the command below in the API folder.
```
dotnet watch run
```
* Start Angular with the command below in the client-app folder.
```
ng serve
```