mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 12:30:48 +00:00
6bcfffa1ee
- Use ruby 2.7.7 as it fixed startup issues - Update gems - Remove depr. from puma startup - Make entry.sh dir-agnostic Fix tests: - Use apparition - Update migrations to use new syntax - Some other minor changes
18 lines
253 B
Bash
Executable file
18 lines
253 B
Bash
Executable file
# use source script/env.sh
|
|
|
|
args=("$@")
|
|
|
|
if [[ $# -eq 1 ]]; then
|
|
args+=(.env)
|
|
fi
|
|
|
|
for FILE in "$@"
|
|
do
|
|
echo "Loading env vars from: $FILE"
|
|
ARGS=$(cat $FILE |grep -vE '^[[:space:]]*(#.*)*$')
|
|
|
|
export $(echo $ARGS|xargs)
|
|
echo "$ARGS"
|
|
echo
|
|
done
|
|
|