Compare commits

...

2 commits

Author SHA1 Message Date
b0bc2ea611 add note when there are no posts 2024-05-04 15:21:54 +03:00
e44f4e48b9 fix config env var 2024-05-04 15:21:54 +03:00
2 changed files with 8 additions and 2 deletions

View file

@ -139,8 +139,11 @@ impl Default for CacheConfig {
} }
pub async fn load() -> Result<Config> { pub async fn load() -> Result<Config> {
let config_file = env::var(format!("{}_CONFIG", env!("CARGO_BIN_NAME"))) let config_file = env::var(format!(
.unwrap_or(String::from("config.toml")); "{}_CONFIG",
env!("CARGO_BIN_NAME").to_uppercase().replace("-", "_")
))
.unwrap_or(String::from("config.toml"));
match tokio::fs::OpenOptions::new() match tokio::fs::OpenOptions::new()
.read(true) .read(true)
.open(&config_file) .open(&config_file)

View file

@ -17,6 +17,9 @@
<h2>posts</h2> <h2>posts</h2>
<!-- prettier-ignore --> <!-- prettier-ignore -->
<div> <div>
{% if posts.is_empty() %}
there are no posts right now. check back later!
{% endif %}<!-- prettier-br -->
{% for post in posts %} {% for post in posts %}
<div class="post"> <div class="post">
<a href="/posts/{{ post.name }}"><b>{{ post.title }}</b></a> <a href="/posts/{{ post.name }}"><b>{{ post.title }}</b></a>