kinetics 0.15.1

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
use rust_dotenv::dotenv::DotEnv;
use std::collections::HashMap;

const FILENAME: &str = ".env.secrets";
const PREFIX: &str = "KINETICS_SECRET_";

pub struct Secrets;

impl Secrets {
    /// Read secrets from the .env file or env vars if file not found.
    pub fn load() -> HashMap<String, String> {
        if !std::path::Path::new(FILENAME).exists() {
            log::warn!(
                "No .env.secrets file found. Search for {PREFIX} prefixed environment variables."
            );
            return std::env::vars()
                .filter_map(|(prefixed_name, value)| {
                    if prefixed_name.starts_with(PREFIX) && prefixed_name != PREFIX {
                        prefixed_name
                            .strip_prefix(PREFIX)
                            .map(|name| (name.to_owned(), value))
                    } else {
                        None
                    }
                })
                .collect();
        }

        DotEnv::load_env(FILENAME).unwrap_or_default()
    }
}