A minimal Dash app used for App Runner demo.
Configuration file for App Runner. For an overview of App Runner configuration files, see Setting App Runner service options using a configuration file.
You can also configure your App Runner service(app) from App Runner console instead of this configuration file.
Add a Health Check Endpoint to use HTTP Health Check with App Runner.
@app.server.route("/health")
def healthcheck():
app.logger.info("Healthy")
return "{status: ok}"
When you create a new App Runner service(app), change check protocol and path like below:
Configuration file for GitHub codespaces. This is not required to use App Runner.