Server MD with Rust

This commit is contained in:
Jarek Rozanski 2026-01-28 20:56:35 +01:00
commit 3899ecce2f
14 changed files with 2823 additions and 0 deletions

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
# Makefile for mhmmcontent project
.PHONY: clean run build
# Clean the project
clean:
cargo clean
# Run the project with port 8989 and ./sample as working directory
run:
cargo run -- --port 8989 --workdir ./sample
# Build the project
build:
cargo build