We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a46568e commit b39c4d2Copy full SHA for b39c4d2
1 file changed
TechStacks/Program.cs
@@ -164,6 +164,8 @@
164
return TypedResults.Challenge(properties, ["GitHub"]);
165
});
166
167
+app.MapGet("/up", () => Results.Ok("OK"));
168
+
169
app.UseServiceStack(new AppHost(), options =>
170
{
171
options.MapEndpoints();
@@ -199,7 +201,7 @@
199
201
Console.WriteLine($"Failed to start Next.js dev server: {process.ExitCode}");
200
202
return;
203
}
-
204
205
process.Exited += (s, e) => {
206
Console.WriteLine("[node] Exited: " + process.ExitCode);
207
File.Delete(nextLockFile);
0 commit comments