angel_configuration 2.2.0 angel_configuration: ^2.2.0 copied to clipboard
Automatic YAML application configuration loader for Angel, with .env support.
import 'dart:async';
import 'package:angel_configuration/angel_configuration.dart';
import 'package:angel_framework/angel_framework.dart';
import 'package:file/local.dart';
Future<void> main() async {
var app = Angel();
var fs = const LocalFileSystem();
await app.configure(configuration(fs));
}