mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$(dirname $0);
|
|
source $SCRIPT_DIR/_env;
|
|
|
|
# Initialize MINIO config
|
|
setup_minio;
|
|
|
|
shift 1;
|
|
set -ex
|
|
exec clojure -A:jmx-remote -A:dev -M -m app.main "$@";
|