mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
16 lines
390 B
Bash
Executable File
16 lines
390 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$(dirname $0);
|
|
source $SCRIPT_DIR/_env;
|
|
|
|
# Initialize MINIO config
|
|
setup_minio;
|
|
|
|
export JAVA_OPTS="$JAVA_OPTS -Dlog4j2.configurationFile=log4j2-devenv-repl.xml"
|
|
export OPTIONS="-A:jmx-remote -A:dev"
|
|
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
|