rocket-chat-demo / start.sh
anuj
init
26488bb
raw
history blame
268 Bytes
#!/bin/bash
# Start MongoDB
mongod --replSet rs0 --bind_ip_all &
# Wait for MongoDB to start
sleep 10
# Initialize replica set
mongosh --eval "rs.initiate({_id: 'rs0', members: [{_id: 0, host: 'localhost:27017'}]})"
# Start Rocket.Chat
cd /app/bundle
node main.js