Spaces:
Runtime error
Runtime error
File size: 305 Bytes
3df5204 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Start MongoDB
mongod --fork --logpath /var/log/mongodb.log
# Wait for MongoDB to be ready
until mongosh --eval "print(\"waited for connection\")" > /dev/null 2>&1; do
echo "Waiting for MongoDB to be ready..."
sleep 1
done
# Start the Node.js application
exec node /app/bundle/main.js |