Uploader

Max file size: 2.00 GB

CLI uploader

curl -X POST -F file=@filename.txt https://storage.dev.seriousgames.net/
> Uploaded to /uploads/2022-09-30/filename.txt

Note: on bad installations you might have to run it with --insecure

sgi-upload.sh

FILE_PATH=`readlink -e $1`
FILE_ARG="file=@$FILE_PATH"

#echo "$FILE_ARG"

curl -X POST -F "$FILE_ARG" https://storage.dev.seriousgames.net/
Download