Last updated:
0 purchases
env2dart
Env2dart #
English | 简体中文
A simple way to generate dart code from a .env file.
Quick Start #
Install the command-line tool:
dart pub global activate env2dart
copied to clipboard
Execute the following command in your project directory:
env2dart
copied to clipboard
CLI #
-p, --path Specify working directory, the CLI will look for the .env file in the current directory.
(defaults to "")
-o, --output Specify the output file path.
(defaults to "lib/env.g.dart")
-a, --active Specify the environment variables to use. For example, if -active prod is specified, the CLI will look for the .env.prod file and merge it with the .env file.
-c, --class Specify the name for the generated class
(defaults to "Env")
-e, --encoder Encode value using the encoder to avoid raw strings. Allows 'base64' and 'utf8'.
-h, --help View help options.
copied to clipboard
Example #
env.g.dart
Statistics #
Licenses #
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.
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.