#!/usr/bin/env bash
# Azure App Service "code" (Oryx) startup. In the App Service blade:
#   Configuration → General → Startup Command:
#       bash scripts/azure-startup.sh
#
# Oryx installs requirements.txt automatically; we just exec start.sh so the
# Docker / App Service / local code paths share a single launch script.
set -euo pipefail
exec ./scripts/start.sh
