summaryrefslogtreecommitdiff
path: root/ebin
diff options
context:
space:
mode:
Diffstat (limited to 'ebin')
-rw-r--r--ebin/plop.app9
1 files changed, 9 insertions, 0 deletions
diff --git a/ebin/plop.app b/ebin/plop.app
new file mode 100644
index 0000000..f8d5d2c
--- /dev/null
+++ b/ebin/plop.app
@@ -0,0 +1,9 @@
+%%% Application resource file for plop (in -*- erlang -*- mode).
+{application, plop,
+ [{description, "The plop store"},
+ {vsn, "0.0.1"},
+ {modules, [plop_app, plop_sup, plop, db, ht, hex]},
+ {applications, [kernel, stdlib]}, % crypto, public_key, mnesia
+ {registered, [plop, db]},
+ {mod, {plop_app, []}} % <-- key file and pass phrase
+ ]}.