An open API service indexing awesome lists of open source software.

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

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
```