yagit
Yet another static site generator for Git 🙀️
Name | Size | Mode | |
.. | |||
src/config.rs | 832B | -rw-r--r-- |
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
//! Compile-time configuration keys // TODO: [feature]: read this from a TOML file at build-time? #[cfg(not(debug_assertions))] pub const REPOS_DIR: &str = "/var/git/public"; #[cfg(debug_assertions)] pub const REPOS_DIR: &str = "./test/public"; #[cfg(not(debug_assertions))] pub const PRIVATE_REPOS_DIR: &str = "/var/git/private"; #[cfg(debug_assertions)] pub const PRIVATE_REPOS_DIR: &str = "./test/private"; #[cfg(not(debug_assertions))] pub const OUTPUT_PATH: &str = "/var/www/git"; #[cfg(debug_assertions)] pub const OUTPUT_PATH: &str = "./site"; pub const PRIVATE_OUTPUT_ROOT: &str = "private/"; #[cfg(not(debug_assertions))] pub const GIT_USER: &str = "git"; pub const OWNER: &str = "Pablo"; pub const TREE_SUBDIR: &str = "tree"; pub const BLOB_SUBDIR: &str = "blob"; pub const COMMIT_SUBDIR: &str = "commit";