Makefile (353B)
1 clean: 2 rm -rf _build _opam 3 4 build-container: 5 podman build . -t "ocaml" 6 7 # This is how the container will run when distributed, 8 # not for development. Run `make run` if you want to 9 # run locally. 10 11 run-container: container-build 12 podman run -p 3000:8080 ocaml 13 14 fmt: 15 opam exec -- dune fmt 16 17 run: 18 dune exec learning ../courses 19 20 tests: fmt 21 dune runtest