Git Product home page Git Product logo

appconf's Introduction

AppConf

AppConf is a ruby gem used to query config values from one ore more series of YAML configuration files in priority, via dot split item path names.

Installation

gem install appconf

Description

AppConf loads and parses a series of YAML configuration files in priority, which means if multiple configuration items with the same path name exist in different files, then the value of the item in the highest priority file will be selected as query result.

After below setup code:

AppConfig.setup 'myapp', '/root-dir/of/myapp', '/deployment/dir'

AppConf will try to load and parse all these YAML configuration files, if exist, in priority highest to lowest:

  • /deployment/dir/myapp.ruby-platform.config.yaml
  • /deployment/dir/myapp.config.yaml
  • /home/username/.myapp/myapp.ruby-platform.config.yaml
  • /home/username/.myapp/myapp.config.yaml
  • /etc/myapp/myapp.ruby-platform.config.yaml
  • /etc/myapp/myapp.config.yaml
  • /root-dir/of/myapp/config/myapp.ruby-platform.config.yaml
  • /root-dir/of/myapp/config/myapp.config.yaml

Where:

  • /deployment/dir/: The directory where you app is deployed, use AppConfig::setup to tell the gem where it is. When this dir is not specified or is nil, AppConf will try to use dir specified by environment variable: MYAPP_CONF_DIR. In this case, MYAPP part of the environment variable name is the uppercase of first argument value of AppConfig::setup function. If this is still nil, deployment config files will not be used.

  • myapp: The name of the configuration file you requested via AppConfig::get_conf, or the name of your app when nil is used for configuration file name. The app name is setup via AppConfig::setup.

  • .myapp: Note that there is a dot before myapp for the name of this directory, which holds user level configuration file. While on Windows, there is no such dot.

  • ruby-platform: The platform name (i.e. value of the global variable RUBY_PLATFORM) of the ruby is running on. e.g. for jruby, it is java.

  • /home/username: The home directory of the user who is running your app. In Windows, it's ENV['USERPROFILE'], for POSIX, ENV['HOME'] is used.

  • /etc: In Windows, ENV['ALLUSERSPROFILE'] is used.

  • /root-dir/of/myapp: The root directory where your app resides in.

Why YAML?

XML is heavy and verbose, JSON has no comments, that's it.

Usage

Say you have a ruby app named awsome, need a default configuration file located in config directory under your app's root path, named awsome.config.yaml like this (in YAML):

---
db:
	driver: sequel
	conection: sqlite://awsome.db

While when you are testing you app on your development machine, you may want to use a specific sqlite database file located at /home/arloan/awsome-db/test-2016.db. That is simple, just place a file named awsome.config.yaml under /home/arloan/.awsome/, with the contents:

---
db:
	connection: sqlite:///home/arloan/awsome-db/test-2016.db

In addition, you want your app to be compatible with jruby, and want to use a different, jruby specific database connection method when running under jruby, then you can create a configuration file named awsome.java.config.yaml and place it along with your default awsome.config.yaml, in config directory under your app's root path, with the contents:

---
db:
	connection: jdbc:sqlite:awsome.db

In your app's code, you write:

require 'appconf'

# in app's initialization part
AppConfig.setup 'Awsome', # app name, will be converted to lower case automatically
	File.dirname(__FILE__), # app root dir path
	'/path/to/app/deployment/directory' # app deployment path, i.e production env

# default config with app name and deployment directory
default_config = AppConfig.get_config

# use another series of configuration files with new name, use 'new-name.config.yaml' series
another_config = AppConfig.get_config 'new-name'

# you can overwrite deployment directory when get a config serie
overwritten_config = AppConfig.get_config nil, '/path/to/new/deployment/dir'

# to query config value:
# conn == 'sqlite://awsome.db' in default case
# conn == 'sqlite:///home/arloan/awsome-db/test-2016.db' in development environment.
# conn == 'jdbc:sqlite:awsome.db' in jruby
conn = default_config['db.connection']

# non exist path returns nil, no exception
this_is_nil = default_config['non.exist.conf.item.path']

License

(The MIT License)

Copyright © Arloan Bone ([email protected])

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

appconf's People

Contributors

arloan avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.