
Changes the stratup otpions to a prolist to make it easier to get environment variables as default. Tried application:start - and completely baffled as to how to get this to work.
12 lines
307 B
Erlang
12 lines
307 B
Erlang
{application, eleveleddb,
|
|
[
|
|
{description, "Key Value store based on LSM-Tree and designed for larger values"},
|
|
{vsn, "1"},
|
|
{registered, []},
|
|
{applications, [
|
|
kernel,
|
|
stdlib
|
|
]},
|
|
{mod, { eleveleddb_app, []}},
|
|
{env, [{root_path, "test"}]}
|
|
]}.
|