From 57212b9b5c5705d088446a9830c34973300a5ac3 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 3 Oct 2025 10:04:14 -0500 Subject: add some config examples --- forgeConfig.proto | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'forgeConfig.proto') diff --git a/forgeConfig.proto b/forgeConfig.proto index 29b454a..4ad363c 100644 --- a/forgeConfig.proto +++ b/forgeConfig.proto @@ -16,7 +16,7 @@ import "google/protobuf/timestamp.proto"; // Import the well-known type for Time // 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" + string namespace = 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 @@ -34,8 +34,7 @@ message ForgeConfig { // `autogenpb:nom // 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 - string namespace = 14; // `autogenpb:unique` `autogenpb:sort` + string goPath = 13; // deprecate } enum ForgeMode { -- cgit v1.2.3