An ASP.NET Core web API which returns suggested property offer price
API URL here: https://property-price-api-3i2mtbjusq-ew.a.run.app
The list of repositories are as follow:
- ASP.NET Core web API repository here
- React with Vite client repository here
- Google Cloud Platform (GCP) with Terraform infrastructure repository here
Ensure you have installed .NET SDK:
dotnet --versiondotnet run
curl http://localhost:5049/pingdotnet restore
dotnet publish -c Release -o out
cd out
dotnet property-price-api.dll --environment=Developmentcd property-price-api
docker build -t property-price-api:v1 .
docker run -p 5001:8080 property-price-api:v1
curl http://localhost:5001/ping- See documentation here
dotnet ef migrations add AddNewColumn
dotnet ef database updatePull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.