0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-14 19:19:09 -05:00

📎 Update backend scripts/repl file

This commit is contained in:
Andrey Antukh 2023-10-20 13:48:03 +02:00 committed by Andrés Moya
parent 57c83b5d53
commit 7db8d7b7ab

View file

@ -51,18 +51,20 @@ export PENPOT_ASSETS_STORAGE_BACKEND=assets-s3
export PENPOT_STORAGE_ASSETS_S3_ENDPOINT=http://minio:9000 export PENPOT_STORAGE_ASSETS_S3_ENDPOINT=http://minio:9000
export PENPOT_STORAGE_ASSETS_S3_BUCKET=penpot export PENPOT_STORAGE_ASSETS_S3_BUCKET=penpot
#-J-Djdk.virtualThreadScheduler.parallelism=16
export OPTIONS=" export OPTIONS="
-A:jmx-remote -A:dev \ -A:jmx-remote -A:dev \
-J-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager \ -J-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager \
-J-Djdk.attach.allowAttachSelf \ -J-Djdk.attach.allowAttachSelf \
-J-Dpolyglot.engine.WarnInterpreterOnly=false \
-J-Dlog4j2.configurationFile=log4j2-devenv.xml \ -J-Dlog4j2.configurationFile=log4j2-devenv.xml \
-J-XX:+EnableDynamicAgentLoading \
-J-XX:-OmitStackTraceInFastThrow \ -J-XX:-OmitStackTraceInFastThrow \
-J-XX:+UnlockDiagnosticVMOptions \ -J-XX:+UnlockDiagnosticVMOptions \
-J-XX:+DebugNonSafepoints \ -J-XX:+DebugNonSafepoints \
-J-Djdk.tracePinnedThreads=full \ -J-Djdk.tracePinnedThreads=full"
-J--enable-preview";
# Enable preview
export OPTIONS="$OPTIONS -J--enable-preview"
# Setup HEAP # Setup HEAP
export OPTIONS="$OPTIONS -J-Xms50m -J-Xmx1024m" export OPTIONS="$OPTIONS -J-Xms50m -J-Xmx1024m"