cli_env_toml 0.0.5

用于从环境变量、命令行参数生成 toml,然后与已有的 toml 文件做配置合并。
Documentation
1
2
3
4
5
6
7
8
9
10
11
set -o allexport
source ./env
set +o allexport

if ! [ -x "$(command -v bun)" ]; then
  curl -fsSL https://bun.sh/install | bash
fi

if [ ! -d "node_modules" ]; then
  bun i
fi