aboutsummaryrefslogtreecommitdiff
path: root/Procfile
AgeCommit message (Collapse)Author
2022-06-09feat: Move from pico to custom cssGabriel A. Giovanini
Use css from my current blog, which is a lot smaller. The text itself looks good but the code still breaks the page. Metrics: - hyper: 16.37 KB / 16.47 KB transferred - 1 request
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-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.
2022-05-08fix: Change process typeGabriel A. Giovanini
Change heroku procfile process type to web so the process can receive http requet through `POST` envvar.
2022-05-08feat: Add heroku ProcfileGabriel A. Giovanini