Squarecraft: http://squarecraft.io
- Download Node and NPM from https://www.npmjs.com/get-npm. Run
sudo npm install nodemon -g
to install nodemon globally for development. - Install MongoDB from https://docs.mongodb.com/manual/administration/install-community/ and start the mongod process (e.g.
sudo systemctl start mongod
) - Change AWS security group's inbound rules to allow Custom TCP from 0.0.0.0 on ports 5000 (for the server).
- To build the client,
cd client && npm install && node scripts/build.js && cd ..
- To run the server,
npm install && node index.js