v4.3.36
streaming-file-server
4.3.36 release notes
- Update gradle asciidoctor for documentation...
- Fix deprecations
testCompile->testCompileOnlyinjgiven.gradlefile.
Java file server
Java file server based on spring-boot with no memory, upload or download files size limitations
incompatible (not upgradeable) versions
ch.qos.logback:logback-classic [1.2.3 -> 1.3.0-alpha4]
com.tngtech.jgiven:jgiven-html5-report [0.18.2 -> 1.0.0-RC2]
com.tngtech.jgiven:jgiven-junit [0.18.2 -> 1.0.0-RC2]
com.tngtech.jgiven:jgiven-junit5 [0.18.2 -> 1.0.0-RC2]
Installation
with postgres database
manual
# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/docker-compose.yml
docker-compose up -d
# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/file-items-service-4.3.36.jar
java -jar file-items-service-4.3.36.jar --spring.profiles.active=db-pg
# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/file-server-4.3.36.jar
java -jar file-server-4.3.36.jar --app.upload.path=./path/to/file-storage
# cleanup
docker-compose down -vor for simplicity use automation shell-script (*nix)
# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/application.bash
# start
bash application.bash start ./path/to/file-storage
# stop
bash application.bash stop
# cleanup
bash application.bash clean ./path/to/file-storagenote: tested on osx with docker installed locally
binaries: wget, docker-compose, bash and of course java are required
same automation on windows
@rem batch shell-script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/application.cmd
@rem start
application.cmd start path\to\file-storage
@rem stop
application.cmd stop
@rem cleanup
application.cmd clean path\to\file-storagenote: tested on windows 10 with docker installed locally
binaries: which, wget, docker-compose, taskkill, mkdir and of course java (binaries: java and jps) are required
with h2 in-memory database
manual setup
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/file-items-service-4.3.36.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/file-server-4.3.36.jar
bash file-items-service-4.3.36.jar --spring.profiles.active=db-h2
bash file-server-4.3.36.jar --app.upload.path=./path/to/file-storageor for simplicity use special h2 automation shell-script
# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/application-h2.bash
# start
bash application-h2.bash start ./path/to/file-storage
# stop
bash application-h2.bash stop
# cleanup
bash application-h2.bash clean ./path/to/file-storageh2 automation for windows
@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.36/application-h2.cmd
@rem start
application-h2.cmd start path\to\file-storage
@rem stop
application-h2.cmd stop
@rem cleanup
application-h2.cmd clean path\to\file-storagenote: tested on windows 10
binaries: which, del, wget, taskkill, mkdir and of course java, jps are required
enjoy :)