Spaces:
Running
Running
File size: 221 Bytes
fe52598 |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/sh
if [ ! -e "config/config.yaml" ]; then
echo "Resource not found, copying from defaults: config.yaml"
cp -r "default/config.yaml" "config/config.yaml"
fi
# Start the server
exec node server.js --listen
|