available commands for *nix systems scripts
./application> start path/to/storage
./application> stop
./application> clean path/to/storageavailable commands fir windows scripts
application.cmd start path\to\storage
application.cmd stop
application.cmd clean path\to\storagewith postgres in docker
# database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/docker-compose.yml
docker-compose -f docker-compose.yml up -d
# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-items-service-4.3.40.jar
bash file-items-service-4.3.40.jar --spring.profiles.active=db-pg
# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-server-4.3.40.jar
bash file-server-4.3.40.jar --app.upload.path=./path/to/file-storage
# cleanup
docker-compose -f docker-compose.yml down -vor simply using shell-script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/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 localhost docker
installed binaries: wget, docker-compose, bash and of course java are required
for windows use https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/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 localhost docker for postgres
installed binaries: which, wget, docker-compose, taskkill, mkdir and of course java (binaries: java and jps) are required
with h2 in-memory database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-items-service-4.3.40.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-server-4.3.40.jar
# bash file-items-service-4.3.40.jar --spring.profiles.active=db-h2 # or just:
bash file-items-service-4.3.40.jar
bash file-server-4.3.40.jar --app.upload.path=./path/to/file-storageor simply shell script for h2
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/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-storagefor windows use https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/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
installed binaries: which, del, wget, taskkill, mkdir and of course java, jps are required