We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128f6e5 commit 064d9e4Copy full SHA for 064d9e4
run/helloworld/Program.cs
@@ -12,6 +12,7 @@
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
+// [START cloudrun_helloworld_service]
16
var builder = WebApplication.CreateBuilder(args);
17
18
var port = Environment.GetEnvironmentVariable("PORT") ?? "8080";
@@ -23,3 +24,4 @@
23
24
app.MapGet("/", () => $"Hello {target}!");
25
26
app.Run(url);
27
+// [END cloudrun_helloworld_service]
0 commit comments