datahub/datahub-frontend/run/run-local-frontend
John Joyce 12ff330a54
feat(GraphQL API): GQL implementation of Charts + Dashboards (#2117)
Co-authored-by: John Joyce <john@acryl.io>
2021-02-17 23:36:17 -08:00

21 lines
395 B
Bash
Executable File

#!/bin/bash
CURRENT_DIR=$(pwd)
BUILD_DIR=../build/stage/datahub-frontend
CONF_DIR=$BUILD_DIR/conf
set -a
source frontend.env
set +a
export JAVA_OPTS="
-Xms512m
-Xmx1024m
-Dhttp.port=$PORT
-Dconfig.file=$CONF_DIR/application.conf
-Djava.security.auth.login.config=$CONF_DIR/jaas.conf
-Dlogback.configurationFile=$CURRENT_DIR/logback.xml
-Dlogback.debug=true"
$BUILD_DIR/bin/playBinary