diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | src/https_server.erl | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -9,6 +9,8 @@ Requirements A running plop application, which in turn requires mnesia to be running. + jiffie for JSON encoding and decoding. + Start NOTE: Kludge ahead! ctls will turn into a proper OTP application at diff --git a/src/https_server.erl b/src/https_server.erl index a0b81b4..ccbc2e7 100644 --- a/src/https_server.erl +++ b/src/https_server.erl @@ -3,6 +3,10 @@ start() -> io:format("Starting https server~n"), + case code:ensure_loaded(jiffy) of + {module, jiffy} -> ok; + _ -> io:format("missing jiffy -- please add to load path~n") + end, %% TODO: put this in httpd_props.conf and use that at erlang %% start. inets:start(httpd, {proplist_file, "httpd_props.conf"}). ServerRoot = "/home/linus/usr/src/ct/ctls/webroot", |