This is a full-stack application built with Angular 20 frontend and .NET 8 backend.
Angular And DotNet/ ├── Angular/ │ └── SimpleClient/ # Angular frontend application └── DotNet/ └── SimpleAPI/ # .NET backend API - Navigate to the SimpleAPI directory:
cd DotNet/SimpleAPI- Restore dependencies:
dotnet restore- Run the application:
dotnet runThe API will be available at https://localhost:5000
- Navigate to the SimpleClient directory:
cd Angular/SimpleClient- Install dependencies:
npm install --legacy-peer-deps- Start the development server:
ng serveThe application will be available at http://localhost:4200
- .NET SDK 8.0 or later
- Node.js 18.x or later
- Angular CLI 20.0.2
- A code editor (VS Code recommended)
The application uses SQLite as its database, which is file-based and requires no additional setup.
This project is licensed under the MIT License.