mirror of
https://github.com/TeamPiped/Piped-Backend.git
synced 2024-08-14 23:51:41 +00:00
5 lines
268 B
Bash
Executable file
5 lines
268 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
MAX_MEMORY=${MAX_MEMORY:-1G}
|
|
|
|
java -server -Xmx"$MAX_MEMORY" -XX:+UnlockExperimentalVMOptions -XX:+HeapDumpOnOutOfMemoryError -XX:+OptimizeStringConcat -XX:+UseStringDeduplication -XX:+UseCompressedOops -XX:+UseNUMA -XX:+UseG1GC -jar /app/piped.jar
|