liftoff 0.1.1

Get your coding project off the ground fast. See repo
Documentation
pub const LIFTOFF_URL_REGEX: &'static str = r#"^(http://www\.|https://www\.|http://|https://)?[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(/.*)?$"#;

pub const LIFTOFF_VARIABLES_REGEX: &'static str = r#"\$\((.*?)\)"#;

pub const LIFTOFF_GITIGNORE_API: &'static str = "https://www.gitignore.io/api";

pub const LIFTOFF_HOME: &'static str = concat!(env!("HOME"), "/.liftoff/");

pub const LIFTOFF_CONFIG_TEMPLATE_ARGS: [&'static str; 4] = ["cpp", "python", "c", "go"];

pub const LIFTOFF_CONFIG_LINKS: [&'static str; 4] = [
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/configs/cpp.sane",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/configs/python.sane",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/configs/go.sane",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/configs/c.sane",
];

pub const LIFTOFF_LICENSE_LINKS: [&'static str; 12] = [
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/mit.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/unlicense.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/lgpl-3.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/lgpl-2.1.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/gpl-3.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/gpl-2.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/epl-2.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/bsd-2.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/bsd-3.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/agpl-3.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/apache-2.0.txt",
    "https://raw.githubusercontent.com/juliangaal/liftoff/dev/files/licenses/mpl-2.0.txt",
];