arachnid-cli 0.0.3

arachnid aims to be a complete offensive security suite written for Rust.
Documentation
/*
    Appellation: consts <module>
    Created At: 2026.01.11:07:20:34
    Contrib: @FL03
*/

/// defines an array representing the localhost IP address
pub const LOCALHOST: [u8; 4] = [0, 0, 0, 0];

pub const DEFAULT_PORT: u16 = 8080;
pub const DEFAULT_HOST: &str = "0.0.0.0";
pub const DEFAULT_BASEPATH: &str = "/";
pub const DEFAULT_WORKDIR: &str = ".";

pub const DEFAULT_DIR_ARTIFACTS: &str = ".artifacts";

pub const DEFAULT_DIR_CONFIG: &str = ".config";
pub const DEFAULT_CONFIG_FILE: &str = "Arachnid.toml";

pub const APP_NAME: &str = "arachnid";
pub const APP_DESCRIPTION: &str = "A web framework for building scalable applications.";

/*
 ************* Database *************
*/
pub const DEFAULT_DB_URL: &str = "postgresql://postgres:password@localhost:5432/postgres";