rustfmt
[recipes.git] / backend / src / consts.rs
1 use std::time::Duration;
2
3 pub const FILE_CONF: &str = "conf.ron";
4 pub const DB_DIRECTORY: &str = "data";
5 pub const DB_FILENAME: &str = "recipes.sqlite";
6 pub const SQL_FILENAME: &str = "sql/version_{VERSION}.sql";
7 pub const VALIDATION_TOKEN_DURATION: i64 = 1 * 60 * 60; // 1 hour. [s].
8 pub const REVERSE_PROXY_IP_HTTP_FIELD: &str = "x-real-ip";
9 pub const COOKIE_AUTH_TOKEN_NAME: &str = "auth_token";
10 pub const AUTHENTICATION_TOKEN_SIZE: usize = 32; // Number of alphanumeric characters for cookie authentication token.
11 pub const SEND_EMAIL_TIMEOUT: Duration = Duration::from_secs(60);