⬆️Uploader API

Uploader Service Api

Key Notes

  • The service follows the Open Api Spec and REST standards.

  • The service is configured to run using kestrel server on port 2000

  • The service exposes a health check at /health and /healthz endpoint.

  • The service exposes a swagger endpoint for /swagger only in Development env.

  • The service exposes a metric endpoint /metricstext for text based and /metrics for protobuf in prometheus format.

  • The service uses dapr components

Run sql server locally (docker)

docker pull mcr.microsoft.com/mssql/server
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=password@1" -p 1433:1433 --name sql -d mcr.microsoft.com/mssql/server:2017-latest

Local development and migrations


#ENV VAR 

AWS_ACCESS_KEY = ASDASDOQWYH128e912***
AWS_SECRET_KEY = eytabsj3eildu23dl32ib,1i2eld23cSDASD*********

Run locally using dapr

Run in K8s

Last updated