aboutsummaryrefslogtreecommitdiff
path: root/src/bin
AgeCommit message (Collapse)Author
2022-06-11feat: Add project tabGabriel A. Giovanini
2022-06-11feat: Handle 404 resultGabriel A. Giovanini
Now gracefully handle 404, so instead of just panic now it will return a proper http 404 response.
2022-05-26feat: Move to actix to enable compressionGabriel A. Giovanini
Add compression and enable it by default. Also add `cargo-watch` to watch for changes.
2022-05-15fix: Add missing namespaceGabriel A. Giovanini
2022-05-15fix: Make actix follow PORT envvarGabriel A. Giovanini
The server needs to follow `POST` envvar for heroku's sake.
2022-05-15feat: Add actix http server optionGabriel A. Giovanini
The project has two target bin: actix and hyper. - Actix is a lot more capable, feature complete and can handle more request with lower response time but has a bigger memory, size footprint. - Hyper is simpler less capable mure with a much smaller footprint. So by default I'll keep using hyper.