Skip to content

Releases: daggerok/streaming-file-server

v4.3.10

09 Jan 02:01
Compare
Choose a tag to compare

streaming-file-server release

v3.4.9

21 Dec 13:10
Compare
Choose a tag to compare

streaming-file-server release

v4.3.8

14 Dec 22:57
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.8

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

Versions upgrade

dependency version
spring-boot 2.1.1.RELEASE
popper.js 1.14.6
selenide 5.1.0
gradle 5.1-rc-1
jruby 9.2.4.1

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.8/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.8/file-items-service-4.3.8.jar
java -jar file-items-service-4.3.8.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.8/file-server-4.3.8.jar
java -jar file-server-4.3.8.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.8/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.8/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.8/file-items-service-4.3.8.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.8/file-server-4.3.8.jar

bash file-items-service-4.3.8.jar --spring.profiles.active=db-h2
bash file-server-4.3.8.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.8/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-storage

h2 automation for windows

@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.8/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)

v4.3.7

27 Nov 01:17
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.7

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

Gradle 5.0 version update

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.7/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.7/file-items-service-4.3.7.jar
java -jar file-items-service-4.3.7.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.7/file-server-4.3.7.jar
java -jar file-server-4.3.7.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.7/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.7/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.7/file-items-service-4.3.7.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.7/file-server-4.3.7.jar

bash file-items-service-4.3.7.jar --spring.profiles.active=db-h2
bash file-server-4.3.7.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.7/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-storage

h2 automation for windows

@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.7/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)

v4.3.6

26 Nov 03:33
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.6

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

  1. Spring Boot and Gradle versions update
dependency version
spring-boot 2.1.0.RELEASE
font-awesome 5.5.0
popper 1.14.5
powermock 2.0.0-RC.4
jgiven 0.17.0
gradle 5.0-rc-5
org.ajoberstar.git-publish 2.0.0
jruby 9.2.4.0

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.6/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.6/file-items-service-4.3.6.jar
java -jar file-items-service-4.3.6.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.6/file-server-4.3.6.jar
java -jar file-server-4.3.6.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.6/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.6/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.6/file-items-service-4.3.6.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.6/file-server-4.3.6.jar

bash file-items-service-4.3.6.jar --spring.profiles.active=db-h2
bash file-server-4.3.6.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.6/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-storage

h2 automation for windows

@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.6/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)

v4.3.5

02 Nov 02:08
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.5

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

  1. Applied spring team recommendations base on that JIRA: Reactive Repositories are not supported by JPA. Need
    spring-webflux + spring-data-jpa combination get working
  2. Fix Download web controller (download file wailed with optional error)
  3. Fix docker compose all, add nginx reverse proxy
  4. Versions update
dependency version
spring-boot 2.0.6.RELEASE
lombok 1.18.4
org.asciidoctor.convert 1.5.9.1
gradle 5.0-rc-1

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.5/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.5/file-items-service-4.3.5.jar
java -jar file-items-service-4.3.5.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.5/file-server-4.3.5.jar
java -jar file-server-4.3.5.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.5/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.5/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.5/file-items-service-4.3.5.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.5/file-server-4.3.5.jar

bash file-items-service-4.3.5.jar --spring.profiles.active=db-h2
bash file-server-4.3.5.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.5/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-storage

h2 automation for windows

@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.5/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)

v4.3.4

26 Oct 20:21
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.4

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

Update version:

  • bootstrap 3 to 4 migration:
    • bootstrap -> 4.1.3
    • bootstrap-file-input -> 4.4.8
    • font-awesome -> 5.4.1
    • replaced glyphicons with Free Font Awesome
  • gradle documentation
    • org.asciidoctor.convert -> 1.5.8.1
    • org.ajoberstar.git-publish -> 2.0.0-rc.2
  • upgrade gradle up to 4.10.2
  • other versions upgrade:
    • jgiven -> 0.16.1
    • powermock -> 2.0.0-RC.1
    • powermock -> 2.0.0-RC.1
    • selenide -> 5.0.0
    • asciidoctorj-pdf -> 1.5.0-alpha.16
    • com.github.ben-manes gradle plugin -> 0.20.0
    • com.ewerk.gradle.plugins.querydsl -> 1.0.10
    • io.spring.dependency-management -> 1.0.6.RELEASE
    • com.avast.gradle.docker-compose -> 0.7.1

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.4/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.4/file-items-service-4.3.4.jar
java -jar file-items-service-4.3.4.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.4/file-server-4.3.4.jar
java -jar file-server-4.3.4.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.4/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.4/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.4/file-items-service-4.3.4.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.4/file-server-4.3.4.jar

bash file-items-service-4.3.4.jar --spring.profiles.active=db-h2
bash file-server-4.3.4.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.4/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-storage

h2 automation for windows

@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.4/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)

v4.3.3

18 Jul 02:35
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.3

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

  • Update spring-boot up to 2.0.3.RELEASE
  • Update gradle up to 4.9
  • Add Gradle Lombok plugin
  • Add pom.xml + wrapper with jutzig/github-release-plugin configuration. Just run: ./mvnw
  • Add maven asciidoctor plugin documentation automation. Run command: ./mvnw -Pdocs

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.3/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.3/file-items-service-4.3.3.jar
java -jar file-items-service-4.3.3.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.3/file-server-4.3.3.jar
java -jar file-server-4.3.3.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.3/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.3/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.3/file-items-service-4.3.3.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.3/file-server-4.3.3.jar

bash file-items-service-4.3.3.jar --spring.profiles.active=db-h2
bash file-server-4.3.3.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.3/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-storage

h2 automation for windows

@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.3/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)

v4.3.2

10 Jun 15:57
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.2

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

  • Update gradle up to 4.8
  • Update asciidoctor documentation
  • Update JGiven test task
  • Fix postgresql issue: SQLFeatureNotSupportedException: Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.2/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.2/file-items-service-4.3.2.jar
java -jar file-items-service-4.3.2.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.2/file-server-4.3.2.jar
java -jar file-server-4.3.2.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.2/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.2/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.2/file-items-service-4.3.2.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.2/file-server-4.3.2.jar

bash file-items-service-4.3.2.jar --spring.profiles.active=db-h2
bash file-server-4.3.2.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.2/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-storage

h2 automation for windows

@ cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.2/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)

v4.3.1

12 May 18:42
Compare
Choose a tag to compare

streaming-file-server

version: 4.3.1

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

  • Update spring-boot version up to 2.0.2.RELEASE. Update some webjars
  • Fix docker-compose / docker files
  • Move application / docker modules into modules/libraries
    just for example we are moving reusable modules:
    • props modules/libraries/props
    • web-security modules/libraries/web-security (potentially reusable, but will be replaces with reactive implementation)
  • Fix h2 / pg spring boot profiles:
    now we are using h2 by default, unless needed will be specify:
    • db-pg (postgres database)
    • db-h2

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.1/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.1/file-items-service-4.3.1.jar
java -jar file-items-service-4.3.1.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.1/file-server-4.3.1.jar
java -jar file-server-4.3.1.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.1/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: 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.1/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: 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.1/file-items-service-4.3.1.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.1/file-server-4.3.1.jar

bash file-items-service-4.3.1.jar --spring.profiles.active=db-h2
bash file-server-4.3.1.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.1/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-storage

h2 automation for windows

@ cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.1/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-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)