smbcloud-model 0.3.35

Command line tool for deploying NextJS app on the smbCloud platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use {
    crate::runner::Runner,
    serde::{Deserialize, Serialize},
};

#[derive(Debug, Serialize, Deserialize)]
#[tsync::tsync]
pub struct Repository {
    pub is_smbcloud_project: bool,
    pub short_name: String,
    pub name: String,
    pub path: String,
    pub runner: Runner,
}