https://github.com/ahsansoftengineer/dotnet-micro-2-julio-casal
Play.Catalog, Play.Common, Play.Infra, Play.Inventory
https://github.com/ahsansoftengineer/dotnet-micro-2-julio-casal
docker docker-compose dotnet-core grpc http-client kubernetes sql
Last synced: 2 months ago
JSON representation
Play.Catalog, Play.Common, Play.Infra, Play.Inventory
- Host: GitHub
- URL: https://github.com/ahsansoftengineer/dotnet-micro-2-julio-casal
- Owner: ahsansoftengineer
- Created: 2023-06-21T05:44:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-18T10:20:50.000Z (over 2 years ago)
- Last Synced: 2025-07-29T16:35:24.088Z (11 months ago)
- Topics: docker, docker-compose, dotnet-core, grpc, http-client, kubernetes, sql
- Language: C#
- Homepage:
- Size: 12.9 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README/1-Setup.md
Awesome Lists containing this project
README
1. Startingup MicroService with VS Code
```c#
// With in the Folder
cd Play.Catalog/src
dotnet new webapi -n Play.Catalog.Service --framework net5.0
// Settup .vscode Folder > launch.json, tasks.json
// Properties
```
2. Setting VS Code for Debugging just by clicking on Enable VS Code Debugging
3. Setting up Project Port | Properties>launchSettings.json>
```json
"applicationUrl": "https://localhost:8000;http://localhost:8001",
```
4. Building Project
```c#
PS MicroServiceBackEnd\Play.Catalog\src\Play.Catalog.Service> dotnet build
```
5. This Option Enable
- - Menu>Terminal>Run Build Task (Ctrl + Shift + Build)
```json
.vscode>Tasks.json
"tasks": [
{
"group": {
"kind": "build",
"isDefault": true
}
}
]
```
6. Dotnet Core Project Setup
```c#
// Run Project
PS MicroServiceBackEnd\Play.Catalog\src\Play.Catalog.Service> dotnet run
// VS Code Sidebar Menu > Debug & Run >
Click on the Play Button |>
Ctrl + F5
// Dev Certificate
dotnet dev-certs https --trust
// Initializing git
git init
dotnet new gitignore
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/ahsansoftengineer/DotnetCoreMicroService.git
git push -u origin main
```