Intial commit for deployment script p2

This commit is contained in:
2026-05-04 23:23:02 +05:00
parent 724e6a8ecd
commit 40fe69ed65
20 changed files with 2008 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
# Translate Cloud Run's injected PORT env var into what ASP.NET Core reads.
# Cloud Run sets PORT (default 8080). ASP.NET Core reads ASPNETCORE_HTTP_PORTS.
export ASPNETCORE_HTTP_PORTS="${PORT:-8080}"
exec ./Htmx.ApiDemo "$@"