rust_web_framework 0.1.6

Quickly crate API:s using this simple and lightweight framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
FROM rust:1.63.0

WORKDIR /usr/src/app

COPY . .

EXPOSE 8081

RUN cargo build

ENTRYPOINT [ "cargo", "run" ]