hoc/src/config.rs
2021-03-22 12:46:10 +01:00

39 lines
1.0 KiB
Rust

use config::{Config, ConfigError, Environment, File};
use std::path::PathBuf;
#[derive(Debug, Deserialize)]
pub struct Settings {
/// Path to store cloned repositories
pub repodir: PathBuf,
/// Path to store cache
pub cachedir: PathBuf,
/// Port to listen on
pub port: u16,
/// Interface to listen on
pub host: String,
/// Base URL
pub base_url: String,
/// Number of worker threads
pub workers: usize,
}
impl Settings {
#[deprecated]
pub fn new() -> Result<Self, ConfigError> {
Self::load()
}
pub fn load() -> Result<Self, ConfigError> {
let mut config = Config::new();
config
.merge(File::with_name("hoc.toml").required(false))?
.merge(Environment::with_prefix("hoc"))?
.set_default("repodir", "./repos")?
.set_default("cachedir", "./cache")?
.set_default("workers", 4)?
.set_default("port", 8080)?
.set_default("host", "0.0.0.0")?;
config.try_into()
}
}