login finished XD

This commit is contained in:
pena 2021-11-05 16:55:19 +01:00 committed by Swrup
parent b1539aaae8
commit 6c64dcfffd
13 changed files with 326 additions and 3 deletions

View file

@ -1,3 +1,36 @@
(executable
(name permap)
(modules permap))
(public_name permap)
(modules content login permap register template user)
(libraries
dream
emile
omd
lambdasoup)
(preprocess (pps lwt_ppx)))
(rule
(targets template.ml)
(deps template.eml.html)
(action
(run dream_eml %{deps} --workspace %{workspace_root})))
(rule
(targets login.ml)
(deps login.eml.html)
(action
(run dream_eml %{deps} --workspace %{workspace_root})))
(rule
(targets register.ml)
(deps register.eml.html)
(action
(run dream_eml %{deps} --workspace %{workspace_root})))
(rule
(target content.ml)
(deps
(source_tree content))
(action
(with-stdout-to
%{null}
(run ocaml-crunch -m plain content -o %{target}))))