21 lines
611 B
Batchfile
21 lines
611 B
Batchfile
@echo off
|
|
REM ============================================================================
|
|
REM Troostwijk Auction Monitor - Status Check (Windows)
|
|
REM ============================================================================
|
|
REM
|
|
REM This script shows the current status and exits.
|
|
REM
|
|
REM Usage:
|
|
REM check-status.bat
|
|
REM
|
|
REM ============================================================================
|
|
|
|
REM Set configuration
|
|
set DATABASE_FILE=C:\mnt\okcomputer\output\cache.db
|
|
set NOTIFICATION_CONFIG=desktop
|
|
|
|
REM Check status
|
|
java -jar target\auctiora-1.0-SNAPSHOT-jar-with-dependencies.jar status
|
|
|
|
pause
|