1#!/bin/bash
2 3# Source the Postgres setup script 4source ./scripts/setup-postgres.sh
5 6# Trap SIGINT and SIGTERM to cleanup on exit 7trap cleanup_postgres SIGINT SIGTERM
8 9# Run the dev command10npm run dev:inner
1112# Cleanup after dev command exits13cleanup_postgres