blob: 763b852625961fd58a1c612b8f9f6cc5bd618f35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
use config::ConfigError;
use lazy_static::lazy_static;
use serde::Deserialize;
#[derive(Deserialize)]
/// App config
pub struct Configuration {
/// Level of Rust logging
pub rust_log: String,
/// Database URL for Postgres
pub database_url: String,
/// JWT secret used for key creation
pub jwt_secret: String,
/// Host URL
pub allowed_host: String,
/// Token used by Expo API to send a notification
pub expo_access_token: String,
/// Token used for text-to-speach API
pub unrealspeech_token: String,
}
impl Configuration {
/// A new configuration read from the env
pub fn new() -> Result<Self, ConfigError> {
let builder = config::Config::builder().add_source(config::Environment::default());
builder.build()?.try_deserialize()
}
}
lazy_static! {
pub static ref CONFIG: Configuration = Configuration::new().expect("Config can be loaded");
}
|