mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2026-09-13 16:34:53 +00:00
17 lines
405 B
Java
Executable File
17 lines
405 B
Java
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
ROOT_DIR=$(cd "$(dirname "$0")/../../../.." || exit 1; pwd)
|
|
SERVER_DIR="$ROOT_DIR/server"
|
|
|
|
if [ -n "$JAVA_HOME" ]; then
|
|
export PATH="$JAVA_HOME/bin:$PATH"
|
|
fi
|
|
|
|
cd "$SERVER_DIR" || exit 1
|
|
|
|
mvn spring-boot:run \
|
|
-Dspring-boot.run.addResources=true \
|
|
-Dspring-boot.run.jvmArguments="-Dfile.encoding=UTF-8 -Dspring.config.location=$SERVER_DIR/src/main/config/application.properties"
|