choki 1.1.19

A simple http server built from scratch. Not intended for production uses but a simple website with some query stuff can be made. (can withstand a lot of requests per second)
Documentation
1
2
3
4
5
6
7
8
FROM archlinux:latest

WORKDIR /app

COPY target/debug/choki ./

CMD ["./choki"]
EXPOSE 3000