Spaces:
Build error
Build error
File size: 319 Bytes
254a7cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/usr/bin/env sh
# Start the backend server
chmod +x /app/build/tanks.x86_64
xvfb-run -ae /dev/stdout \
--server-args='-screen 0 640x480x24:32' \
/app/build/tanks.x86_64 \
-batchmode \
-nographics \
-logfile /app/logs/server.log &
# Start Nginx
nginx -g 'daemon off;'
|