login finished XD

This commit is contained in:
zapashcanon 2021-11-05 16:55:19 +01:00
parent 7dc0d9a70d
commit a24e59ed04
No known key found for this signature in database
GPG key ID: 8981C3C62D1D28F1
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}))))