mirror of
https://github.com/penpot/penpot.git
synced 2025-06-19 22:21:37 +02:00
This introduces multistage build process for devenv making different dependencies build depend on its own (per example, when jvm version is changed, only the jvm stage is rebuild) This commit also introduces imagemagick 7.x custom build in the same way as we have on public docker images, so on devenv we use the same version.
70 lines
2.2 KiB
Bash
Executable file
70 lines
2.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
export PENPOT_SECRET_KEY=super-secret-devenv-key
|
|
export PENPOT_HOST=devenv
|
|
export PENPOT_FLAGS="\
|
|
$PENPOT_FLAGS \
|
|
enable-prepl-server \
|
|
enable-urepl-server \
|
|
enable-nrepl-server \
|
|
enable-webhooks \
|
|
enable-backend-asserts \
|
|
enable-audit-log \
|
|
enable-login-with-ldap \
|
|
enable-transit-readable-response \
|
|
enable-demo-users \
|
|
enable-feature-fdata-pointer-map \
|
|
enable-feature-fdata-objects-map \
|
|
disable-secure-session-cookies \
|
|
enable-rpc-climit \
|
|
enable-smtp \
|
|
enable-quotes \
|
|
enable-file-snapshot \
|
|
enable-access-tokens \
|
|
enable-tiered-file-data-storage \
|
|
enable-file-validation \
|
|
enable-file-schema-validation \
|
|
enable-subscriptions \
|
|
enable-subscriptions-old ";
|
|
|
|
# Default deletion delay for devenv
|
|
export PENPOT_DELETION_DELAY="24h"
|
|
|
|
# Setup default upload media file size to 100MiB
|
|
export PENPOT_MEDIA_MAX_FILE_SIZE=104857600
|
|
|
|
# Setup default multipart upload size to 300MiB
|
|
export PENPOT_HTTP_SERVER_MAX_MULTIPART_BODY_SIZE=314572800
|
|
|
|
# Initialize MINIO config
|
|
mc alias set penpot-s3/ http://minio:9000 minioadmin minioadmin -q
|
|
mc admin user add penpot-s3 penpot-devenv penpot-devenv -q
|
|
mc admin user info penpot-s3 penpot-devenv |grep -F -q "readwrite"
|
|
if [ "$?" = "1" ]; then
|
|
mc admin policy attach penpot-s3 readwrite --user=penpot-devenv -q
|
|
fi
|
|
mc mb penpot-s3/penpot -p -q
|
|
|
|
export AWS_ACCESS_KEY_ID=penpot-devenv
|
|
export AWS_SECRET_ACCESS_KEY=penpot-devenv
|
|
export PENPOT_OBJECTS_STORAGE_BACKEND=s3
|
|
export PENPOT_OBJECTS_STORAGE_S3_ENDPOINT=http://minio:9000
|
|
export PENPOT_OBJECTS_STORAGE_S3_BUCKET=penpot
|
|
|
|
entrypoint=${1:-app.main};
|
|
|
|
export JAVA_OPTS="\
|
|
-Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager \
|
|
-Djdk.attach.allowAttachSelf \
|
|
-Dlog4j2.configurationFile=log4j2-devenv.xml \
|
|
-Djdk.tracePinnedThreads=full \
|
|
-Dim4java.useV7=true \
|
|
-XX:-OmitStackTraceInFastThrow \
|
|
--sun-misc-unsafe-memory-access=allow \
|
|
--enable-preview \
|
|
--enable-native-access=ALL-UNNAMED";
|
|
|
|
export OPTIONS="-A:jmx-remote -A:dev"
|
|
|
|
set -ex
|
|
clojure $OPTIONS -M -m $entrypoint;
|