- Added new API endpoints for managing predefined activities, including retrieval, creation, updating, merging, and deduplication. - Updated socket event handling to improve the mapping of socket events to domain events, ensuring better integration with the diary service. - Enhanced repository mappers to support detailed mapping of predefined activities and training statistics, including images and member participation data. - Introduced new UI strings for managing predefined activities, improving user experience in the diary section.
18 lines
483 B
Bash
Executable File
18 lines
483 B
Bash
Executable File
#!/bin/sh
|
|
|
|
APP_HOME=$(cd "${0%/*}" >/dev/null 2>&1; pwd -P)
|
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
|
DEFAULT_JVM_OPTS="-Xmx64m -Xms64m"
|
|
|
|
if [ -n "$JAVA_HOME" ]; then
|
|
JAVACMD="$JAVA_HOME/bin/java"
|
|
if [ ! -x "$JAVACMD" ]; then
|
|
echo "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME" >&2
|
|
exit 1
|
|
fi
|
|
else
|
|
JAVACMD="java"
|
|
fi
|
|
|
|
exec "$JAVACMD" $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|