https://github.com/shiguredo/kvconf
https://github.com/shiguredo/kvconf
erlang ini
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shiguredo/kvconf
- Owner: shiguredo
- License: apache-2.0
- Created: 2019-11-29T03:28:24.000Z (over 6 years ago)
- Default Branch: develop
- Last Pushed: 2025-04-02T02:58:43.000Z (about 1 year ago)
- Last Synced: 2025-04-02T21:19:26.872Z (about 1 year ago)
- Topics: erlang, ini
- Language: Erlang
- Homepage:
- Size: 9.31 MB
- Stars: 7
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
# kvconf

[](https://github.com/shiguredo/kvconf)
[](https://opensource.org/licenses/Apache-2.0)
- kvconf は Erlang アプリケーションで Erlang Term を設定ファイルに利用するのに疲れた人のための仕組みです
- INI 形式ベースで、文字列は `""` を囲わず、コメントは `#` を採用しています
- INI 形式のセクション機能は利用できない
- 設定ファイルに対するバリデーションを Erlang のレコードを利用して定義することができるため Dialyzer の恩恵を受けることができます
## rebar.conf
```erlang
{deps, [{kvconf, "2024.3.1"}]}.
```
## 設定ファイル例
```text
etc/app.conf
```
```ini
# コメント
key = value
```
## 設定定義例
```erlang
[
#kvc{key = a, type = #kvc_atom{candidates = [x,y,z]}, default = x},
#kvc{key = b, type = #kvc_string{}, required = true},
#kvc{key = c, type = #kvc_interval{min = {10, s}, max = {30, s}, out_time_unit = millisecond}, default = {20, s}},
#kvc{key = d, type = #kvc_integer{min = 10, max = 100}},
#kvc{key = e, type = #kvc_boolean{}, default = true}
]
```
## ライセンス
```text
Copyright 2019-2025, Shiguredo Inc.
Copyright 2019-2021, Shunichi Shinohara (Original Author)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```