* Move application configuration to be loaded from environment variables * Remove unused sentry.properties * Make missing value sentinel a constant and ignore all *.env files * Removed now-used ACL properties * Prefix RapidAPI environment variable with APPSMITH_ * Fix application properties not being loaded into static fields * Remove application-test.properties file * Add required env variables for test in GitHub * Quote URLs for MongoDB and Redis in test config * Change RAPIDAPI to RAPID_API in environment variable names * Source .env file in the root of repo in start script
14 lines
356 B
Bash
Executable File
14 lines
356 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Change to the parent directory of the directory containing this script.
|
|
cd "$(cd "$(dirname "$0")" && pwd)/.."
|
|
|
|
# Ref: <https://stackoverflow.com/a/30969768/151048>.
|
|
if [[ -f .env ]]; then
|
|
echo "Found a .env file, loading environment variables from that file."
|
|
set -o allexport
|
|
source .env
|
|
fi
|
|
|
|
exec java -jar dist/server-*.jar
|