mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 15:09:10 -05:00
c394495a26
This commit replaces rj9a with funcool/yetti ring adapter. Cleans the websocket api and makes it fully asynchronous. Also a common websocket protocol abstraction that will allow more easy path for creating new websocket based services.
20 lines
670 B
Bash
Executable file
20 lines
670 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export PENPOT_FLAGS="enable-asserts enable-audit-log $PENPOT_FLAGS"
|
|
|
|
export OPTIONS="
|
|
-A:jmx-remote:dev \
|
|
-J-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager \
|
|
-J-Dlog4j2.configurationFile=log4j2-devenv.xml \
|
|
-J-XX:+UseZGC \
|
|
-J-XX:-OmitStackTraceInFastThrow \
|
|
-J-Xms50m -J-Xmx512m";
|
|
|
|
# export OPTIONS="$OPTIONS -J-XX:+UnlockDiagnosticVMOptions";
|
|
# export OPTIONS="$OPTIONS -J-XX:-TieredCompilation -J-XX:CompileThreshold=10000";
|
|
|
|
export OPTIONS_EVAL="nil"
|
|
# export OPTIONS_EVAL="(set! *warn-on-reflection* true)"
|
|
|
|
set -ex
|
|
exec clojure $OPTIONS -M -e "$OPTIONS_EVAL" -m rebel-readline.main
|