Popularity
1.5
Declining
Activity
0.0
Stable
2
2
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.
-
conform
Easy, powerful, and extendable configuration tooling for releases. -
confex
Useful helper to read and use application configuration from environment variables. -
Skogsrå
Library to manage OS environment variables and application configuration options with ease -
weave
JIT configuration loader that works with Kubernetes and Docker Swarm. -
Flasked
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 -
hush_aws_secrets_manager
An AWS Secrets Manager Provider for Hush -
hush_gcp_secret_manager
A Google Secret Manager Provider for Hush -
mahaul
Supercharge your environment variables in Elixir. Parse and validate with compile time access guarantees, defaults, fallbacks and app pre-boot validations. -
figaro_elixir
Environmental variables manager based on Figaro for Elixir projects -
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
Access the most powerful time series database as a service
Ingest, store, & analyze all types of time series data in a fully-managed, purpose-built database. Keep data forever with low-cost storage and superior data compression.
Promo
www.influxdata.com
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.