summaryrefslogtreecommitdiff
path: root/ebin
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2014-04-29 16:56:09 +0200
committerLinus Nordberg <linus@nordu.net>2014-04-29 16:56:09 +0200
commit7c5a0789ba80f890c868e81b981315dd53e9dd94 (patch)
treea68cc11778fe4ea56ddb0bbaf9709960c0e71bcb /ebin
parent73a6c28e22991f2f6dc0ab303c1c5274f083de77 (diff)
Turn it all into an application.
Warning: Rough edges.
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
+ ]}.