https://github.com/jvegar/dotnet-my-platform-api
Rest API for My Platform built on .Net Core
https://github.com/jvegar/dotnet-my-platform-api
dotnet-core postgresql rest-api
Last synced: 3 months ago
JSON representation
Rest API for My Platform built on .Net Core
- Host: GitHub
- URL: https://github.com/jvegar/dotnet-my-platform-api
- Owner: jvegar
- Created: 2025-01-29T03:31:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-13T06:36:06.000Z (about 1 year ago)
- Last Synced: 2025-04-13T07:35:22.674Z (about 1 year ago)
- Topics: dotnet-core, postgresql, rest-api
- Language: C#
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DotNet My Platform API
API developed for My Platform app
# Deployment
```sh
# Build the app
dotnet publish -c Release -o ./publish
# Generate zip
cd publish
zip -r ../myapp.zip .
# Deploy to Azure
az webapp deploy --resource-group my-platform-api --name web-my-platform-api --src-path ../myapp.zip
```