Age | Commit message (Collapse) | Author |
|
|
|
The server needs to follow `POST` envvar for heroku's sake.
|
|
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.
|
|
Add the missing blog post from my hugo blog. Also add a locustfile so I
can do some stress test locally.
|
|
Now post template has title and created date by defaul.
|
|
- Move most logic of the blog to blog.rs, making it easier to test.
- Now the file contains the creation date of the blog post to be parsed.
- Add chrono to parse datetime, so later we can order by date.
- Refactor gitlab pipeline, move `before_script` to a proper place.
|
|
Add title parse so it yields a better post list.
|
|
- Use embed rust to load and resolve file from `content/post` folder, so
the whole process is a bit more dynamic.
- Add router to to resolve the path. It is the first step to try to get
the code a bit cleaner.
|
|
Trying to fixe the following issue from Heroku:
> Error R10 (Boot timeout) -> Web process failed to bind to $PORT
> within 60 seconds of launch
|
|
Now the port can be set through `PORT` enviroment variable, this is
useful for deploying on heroku.
|
|
It is just a really crappy implementation to get it running until a
figure the pieces of the project out.
|
|
|