commons_config 0.0.4 commons_config: ^0.0.4 copied to clipboard
Commons Configuration provides generic configuration interface which enables an application to read configuration data from a variety of sources.
Commons Configuration #
The Commons Configuration software library provides a generic configuration interface which enables a Dart/Flutter application to read configuration data from a variety of sources.
Table of Contents
About The Package #
To do: add more info about package here
Built With #
- Dart 3.4.3
Getting Started #
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
Prerequisites #
Needs Dart SDK 3.4.3
Installation #
pub add commons_config
Usage #
Import library
import 'package:commons_config/commons_config.dart';
Create a Properties instance
Properties properties = Properties();
Load the properties from a file
properties.loadSync(File('loggin.props'));
Read a property with the getProperty method
print(properties.getProperty('rootLogger'));
Roadmap #
- ✅ Project skeleton and initial setup
- ✅ Update readme
- ✅ Add Properties class
See the open issues for a full list of proposed features (and known issues).
Contributing #
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
License #
Distributed under the Apache 2.0 License. See LICENSE
for more information.
Contact #
Limeslice Software Foundation https://limeslice.org
Acknowledgments #
We would like to thank the authors of the Apache Commons Configuration package which provided the basis for this package.