#!/bin/bash
echo 'Setting file permissions...'
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
chmod 755 server.js
echo 'Setup complete!'