A Mini MVC Framework implemented and built over docker .
make build
make up
make down
Routes are built to handle dynamic variables with\without Regex :
hello/{id}/guest/{name}
: theid
andname
variable matches any literals .hello/{(\d+)}/guest/{(\w+)}
: here the first variable matches only integers while the second variable matches any alphanumerical characters [a-zA-Z0-9]
Note : when using regex in routes you must group variables using (
and )
.