Server MD with Rust
This commit is contained in:
commit
3899ecce2f
14 changed files with 2823 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue