ath / start.sh
remainsalways's picture
Create start.sh
17fd0e6 verified
raw
history blame contribute delete
274 Bytes
#!/bin/bash
# Optional: Run a Python server if needed for custom logic
if [ -f /app/server.py ]; then
echo "Starting Python server..."
python3 /app/server.py &
fi
# Start the main application
echo "Starting Atheos application on port 80..."
nginx -g "daemon off;"