eejit 0.2.1

A self-hosted Git server that's easy to set up, use, and maintain.
1
2
3
4
5
6
7
8
pub const GUEST_USERNAME: &str = "guest";
pub const SERVER_CONFIG_REPO: &str = "config.git";
pub const SERVER_CONFIG_FILE: &str = "server.toml";

pub const REPO_CONFIG_FILE: &str = "eejit.toml";

pub const GIT_COMMANDS: [&str; 3] = ["git-receive-pack", "git-upload-archive", "git-upload-pack"];
pub const GIT_PUSH_COMMAND: &str = "git-receive-pack";