#!/bin/sh set -e # Ensure logs directory exists with correct permissions if [ ! -d "/app/logs" ]; then mkdir -p /app/logs fi # Ensure temp directory exists if [ ! -d "/app/temp" ]; then mkdir -p /app/temp fi # Start the application exec node src/app.js