first version, based on mnesia_eleveldb

This commit is contained in:
Ulf Wiger
2018-02-06 09:43:57 +01:00
commit 6c9f5b565f
30 changed files with 4835 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
%% -*- erlang-mode -*-
case os:getenv("DEBUG") of
"true" ->
Opts = proplists:get_value(erl_opts, CONFIG, []),
lists:keystore(erl_opts, 1, CONFIG,
[{d,'DEBUG'} | Opts -- [{d,'DEBUG'}]]);
_ ->
CONFIG
end.