summaryrefslogtreecommitdiff
path: root/internal/main.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-24 22:22:18 +0300
committerPaul Buetow <paul@buetow.org>2025-09-24 22:22:18 +0300
commit95997ba2eb4de80b02245bacbf15e881adafd73c (patch)
tree69a205245122173784683906cdac874336786f7f /internal/main.go
parent489be96e51aaeb551f44ee4edc08197c40746e40 (diff)
increasing limitsv1.1.2
Diffstat (limited to 'internal/main.go')
-rw-r--r--internal/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/main.go b/internal/main.go
index 97bdb82..1e7d023 100644
--- a/internal/main.go
+++ b/internal/main.go
@@ -22,9 +22,9 @@ func Main(composeModeDefault bool) {
configPath := filepath.Join(os.Getenv("HOME"), ".config/gos/gos.json")
configPath = *flag.String("configPath", configPath, "Gos' config file path")
platforms := flag.String("platforms", "Mastodon:500,LinkedIn:1000,Noop:2000", "Platforms enabled plus their post size limits")
- target := flag.Int("target", 3, "How many posts per week are the target?")
+ target := flag.Int("target", 2, "How many posts per week are the target?")
minQueued := flag.Int("minQueued", 10, "Minimum of queued items until printing a warn message!")
- maxDaysQueued := flag.Int("maxDaysQueued", 365, "Maximum days worth of queued posts until target++ and pauseDays--")
+ maxDaysQueued := flag.Int("maxDaysQueued", 365*2, "Maximum days worth of queued posts until target++ and pauseDays--")
pauseDays := flag.Int("pauseDays", 1, "How many days until next post can be posted?")
runInterval := flag.Int("runInterval", 3, "How many hours to wait for the next run.")
lookback := flag.Int("lookback", 90, "How many days look back in time for posting history")