You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
# TED Procurement Processor Startup Script
|
|
# Increases Java heap size to 4GB
|
|
|
|
echo "Starting TED Procurement Processor with 4GB heap..."
|
|
|
|
java -Xms2g -Xmx4g -jar target/ted-procurement-processor-1.0.0-SNAPSHOT.jar
|