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.";
pub const DEFAULT_DB_URL: &str = "postgresql://postgres:password@localhost:5432/postgres";