oseda-cli 3.2.2

OSEDA project scaffolding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use std::path::Path;

use crate::config;

pub mod check;
pub mod deploy;
pub mod dev;
pub mod export;
pub mod fork;
pub mod init;
pub mod run;
pub mod update;

pub fn is_cwd_oseda_project() -> bool {
    Path::new(config::CONFIG_FILE_NAME)
        .try_exists()
        .is_ok_and(|exists| exists)
}