1 Star 0 Fork 321

yuriboy / ERD-ONLINE

forked from martin88 / ERD-ONLINE 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
env.sh 794 Bytes
一键复制 编辑 原始数据 按行查看 历史
zerocode.net.cn 提交于 2022-06-18 09:44 . feat(erd): 4.0.0-beta版
#!/bin/bash
# Recreate config file
rm -rf ./env-config.js
touch ./env-config.js
# Add assignment
echo "window._env_ = {" >> ./env-config.js
# Read each line in .env file
# Each line represents key=value pairs
while read -r line || [[ -n "$line" ]];
do
# Split env variables by character `=`
if printf '%s\n' "$line" | grep -q -e '='; then
varname=$(printf '%s\n' "$line" | sed -e 's/=.*//')
varvalue=$(printf '%s\n' "$line" | sed -e 's/^[^=]*=//')
fi
# Read value of current variable if exists as Environment variable
value=$(printf '%s\n' "${!varname}")
# Otherwise use value from .env file
[[ -z $value ]] && value=${varvalue}
# Append configuration property to JS file
echo " $varname: \"$value\"," >> ./env-config.js
done < .env
echo "}" >> ./env-config.js
JavaScript
1
https://gitee.com/mysymt/erd-online.git
git@gitee.com:mysymt/erd-online.git
mysymt
erd-online
ERD-ONLINE
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891