This commit is contained in:
2025-11-28 05:05:33 +01:00
parent c26264b92a
commit ec2efd4661
3 changed files with 591 additions and 16 deletions

View File

@@ -2,6 +2,13 @@ package com.auction;
public class Main {
public static void main(String[] args) {
// If arguments are passed, this is likely a one-off command via dokku run
// Just exit immediately to allow the command to run
if (args.length > 0) {
System.out.println("Command mode - exiting to allow shell commands");
return;
}
System.out.println("Starting Troostwijk Auction Scraper...");
System.out.println("Container is running and healthy.");