summaryrefslogtreecommitdiff
path: root/forgeConfig.proto
diff options
context:
space:
mode:
authorYour Name <[email protected]>2024-01-01 12:00:00 -0600
committerYour Name <[email protected]>2024-01-01 12:00:00 -0600
commitab01c2cd60331d55f5c6d5b033d2cd422fb020b4 (patch)
treee0a1967fd14aeeca02dafdc5296ff865a11326b4 /forgeConfig.proto
parentc89f101fb2b1c082ade67ce14ac92cda7db1de15 (diff)
auto formatting using autogenpbv0.0.71v0.0.70
Diffstat (limited to 'forgeConfig.proto')
-rw-r--r--forgeConfig.proto48
1 files changed, 24 insertions, 24 deletions
diff --git a/forgeConfig.proto b/forgeConfig.proto
index bdff30f..b57b627 100644
--- a/forgeConfig.proto
+++ b/forgeConfig.proto
@@ -14,34 +14,34 @@ import "google/protobuf/timestamp.proto"; // Import the well-known type for Time
// package names sometimes must be different than the binary name
// for example 'zookeeper' is packaged as 'zookeeper-go'
// due to the prior apache foundation project. This happens and is ok!
-message ForgeConfig { // `autogenpb:nomutex`
- string goPath = 1; // `autogenpb:unique` `autogenpb:sort` // Examples: 'go.wit.com/apps/go-clone' or "~/mythings" or "/home/src/foo"
+message ForgeConfig { // `autogenpb:nomutex`
+ string goPath = 1; // `autogenpb:unique` `autogenpb:sort` // Examples: 'go.wit.com/apps/go-clone' or "~/mythings" or "/home/src/foo"
- bool writable = 2; // if you have write access to the repo
- bool readOnly = 3; // the opposite, but needed for now because I don't know what I'm doing
- bool private = 4; // if the repo can be published
- bool directory = 5; // everything in this directory should use these writable & private values
- bool favorite = 6; // you like this. always git clone/go clone this repo
- bool interesting = 7; // this is something interesting you found and want to remember it
+ bool writable = 2; // if you have write access to the repo
+ bool readOnly = 3; // the opposite, but needed for now because I don't know what I'm doing
+ bool private = 4; // if the repo can be published
+ bool directory = 5; // everything in this directory should use these writable & private values
+ bool favorite = 6; // you like this. always git clone/go clone this repo
+ bool interesting = 7; // this is something interesting you found and want to remember it
- string masterBranchName = 8; // git 'main' or 'master' branch name
- string develBranchName = 9; // whatever the git 'devel' branch name is
- string userBranchName = 10; // whatever your username branch is
+ string masterBranchName = 8; // git 'main' or 'master' branch name
+ string develBranchName = 9; // whatever the git 'devel' branch name is
+ string userBranchName = 10; // whatever your username branch is
- string debName = 11; // the actual name used with 'apt install' (or distro apt equivalent.
-// todo: appeal to everyone to alias 'apt' on fedora, gentoo, arch, etc to alias 'apt install'
-// so we can make easier instructions for new linux users. KISS
+ string debName = 11; // the actual name used with 'apt install' (or distro apt equivalent.
+ // todo: appeal to everyone to alias 'apt' on fedora, gentoo, arch, etc to alias 'apt install'
+ // so we can make easier instructions for new linux users. KISS
- google.protobuf.Timestamp verstamp = 12; // the git commit timestamp of the version
- string goSrc = 13; // is ~/go/src unless a go.work file is found
+ google.protobuf.Timestamp verstamp = 12; // the git commit timestamp of the version
+ string goSrc = 13; // is ~/go/src unless a go.work file is found
}
-message ForgeConfigs { // `autogenpb:marshal` `autogenpb:nomutex`
- string uuid = 1; // `autogenpb:uuid:1941cd4f-1cfd-4bf6-aa75-c2c391907e81`
- string version = 2; // `autogenpb:version:v0.0.47`
- repeated ForgeConfig ForgeConfigs = 3;
- string username = 4; // what to use for the user branch (default ENV{USER})
- string xterm = 5; // what xterm the user wants as the default
- repeated string xtermArgv = 6; // the argv line for xterm
- string defaultGui = 7; // default GUI plugin to use
+message ForgeConfigs { // `autogenpb:marshal` `autogenpb:nomutex`
+ string uuid = 1; // `autogenpb:uuid:1941cd4f-1cfd-4bf6-aa75-c2c391907e81`
+ string version = 2; // `autogenpb:version:v0.0.47`
+ repeated ForgeConfig ForgeConfigs = 3;
+ string username = 4; // what to use for the user branch (default ENV{USER})
+ string xterm = 5; // what xterm the user wants as the default
+ repeated string xtermArgv = 6; // the argv line for xterm
+ string defaultGui = 7; // default GUI plugin to use
}