environment_config 3.1.0 copy "environment_config: ^3.1.0" to clipboard
environment_config: ^3.1.0 copied to clipboard

Environment specific config generator. Allows to specify env configuration during CI/CD build. Primarily created to simplify Flutter build configuration

Use this package as an executable

Install it

You can install the package from the command line:

dart pub global activate environment_config

Use it

The package has the following executables:

$ environment-config-generate

Use this package as a library

Depend on it

Run this command:

With Dart:

 $ dart pub add environment_config

With Flutter:

 $ flutter pub add environment_config

This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):

dependencies:
  environment_config: ^3.1.0

Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.

Import it

Now in your Dart code, you can use:

import 'package:environment_config/argument_parser.dart';
import 'package:environment_config/config.dart';
import 'package:environment_config/config_field_type.dart';
import 'package:environment_config/config_generator.dart';
import 'package:environment_config/config_loader.dart';
import 'package:environment_config/errors/config_error.dart';
import 'package:environment_config/errors/extension_not_found_error.dart';
import 'package:environment_config/errors/file_not_found_error.dart';
import 'package:environment_config/errors/malformed_config_error.dart';
import 'package:environment_config/errors/validation_error.dart';
import 'package:environment_config/field_config.dart';
import 'package:environment_config/generator.dart';
import 'package:environment_config/platform_value_provider.dart';
89
likes
130
pub points
91%
popularity

Publisher

unverified uploader

Environment specific config generator. Allows to specify env configuration during CI/CD build. Primarily created to simplify Flutter build configuration

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

args, code_builder, dart_style, yaml

More

Packages that depend on environment_config