From 7c5a0789ba80f890c868e81b981315dd53e9dd94 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Tue, 29 Apr 2014 16:56:09 +0200 Subject: Turn it all into an application. Warning: Rough edges. --- ebin/plop.app | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ebin/plop.app (limited to 'ebin/plop.app') 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 + ]}. -- cgit v1.1