#!/bin/bash cd /app chmod +x init.sh ./init.sh if [ $NODE_ENV = "production" ]; then echo "Production Environment" bun next start -p ${PORT} else echo "Development Environment" bun next dev -p ${PORT} fi