CoolFace
Apppublic

PixelPiggy/CS_float

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
docker_start.sh14 linesDownload Raw Back to root
1#!/bin/bash2 3if [ ! -f /config/config.js ]; then4    cp /usr/src/csgofloat/config.example.js /config/config.js5    echo "Copied example config file to /config/config.js, please edit this file and restart"6    exit 17fi8 9if [ ! -d /config/steam_data ]; then10    mkdir /config/steam_data11fi12 13node index.js -c /config/config.js -s /config/steam_data14