# 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

# Create relase binary
release: clean
	cargo build --release