mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2025-12-28 19:47:01 +00:00
19 lines
715 B
Rust
19 lines
715 B
Rust
use crate::styles::{highlighted_text, important_text};
|
|
|
|
pub fn step_intro() {
|
|
println!("Welcome to the ckan-devstaller!");
|
|
println!(
|
|
"ckan-devstaller is provided by datHere - {}\n",
|
|
highlighted_text("https://datHere.com"),
|
|
);
|
|
println!(
|
|
"This installer should assist in setting up {} from a source installation along with ckan-compose. If you have any issues, please report them at https://support.dathere.com or https://github.com/dathere/ckan-devstaller/issues.",
|
|
highlighted_text("CKAN 2.11.3")
|
|
);
|
|
println!(
|
|
"{}",
|
|
important_text(
|
|
"This installer is only intended for a brand new installation of Ubuntu 22.04."
|
|
)
|
|
);
|
|
}
|