Popularity
1.7
Stable
Activity
0.0
Stable
3
3
3
Programming language: Elixir
Tags:
Configuration
sweetconfig alternatives and similar packages
Based on the "Configuration" category.
Alternatively, view sweetconfig alternatives based on common mentions on social networks and blogs.
-
Flasked
DISCONTINUED. Injecting ENV vars into application configuration at runtime (12factor app for Elixir) -
configparser_ex
A simple Elixir parser for the same kind of files that Python's configparser library handles -
mahaul
Supercharge your environment variables in Elixir. Parse and validate with compile time access guarantees, defaults, fallbacks and app pre-boot validations. -
Enux
utility package for loading, validating and documenting your app's configuration variables from env, json, jsonc and toml files at runtime and injecting them into your environment -
CFEnv
Environmental helpers for cloudfoundry, parsing and returning values off VCAP_SERVICES and VCAP_APPLICATON
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of sweetconfig or a related project?
README
Sweetconfig
Place configuration YAML files in priv/
directory of your root application. Add following section to your config.exs
file:
config :sweetconfig,
app: :name_of_your_application
Include :sweetconfig
into your app deps list.
Now you can read configuration from any point at your app like this:
Sweetconfig.get :somekey
Sweetconfig.get [:somekey, :somesubkey]
Sweetconfig.get :whatever, :default_value
TBD: notification service on configuration changes.