English | 简体中文
一种简单的方式将 .env
文件生成 dart
代码。
- 安装命令行工具
dart pub global activate env2dart
- 在项目目录下执行命令
env2dart
-p, --path 指定工作目录,CLI 将在当前目录中查找 .env 文件。
(默认为 "")
-o, --output 指定输出文件路径。
(默认为 "lib/env.g.dart")
-a, --active 指定要使用的环境变量。例如,如果指定了 `-active prod`,CLI 将查找 .env.prod 文件并将其与 .env 文件合并。
-c, --class 指定生成类的名称。
(默认为 "Env")
-e, --encoder 指定编码以避免存储原始字符串。可使用 `base64` 或者 `utf8`。
-h, --help 查看帮助选项。
Copyright 2023 iota9star
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.