repos / pico

pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh
git clone https://github.com/picosh/pico.git

commit
0cea3b3
parent
61917cb
author
Eric Bower
date
2024-06-16 12:18:08 +0000 UTC
feat(pgs): change max file size for free tier 1->10mb
1 files changed,  +1, -1
M pgs/config.go
+1, -1
1@@ -5,7 +5,7 @@ import (
2 )
3 
4 var maxSize = uint64(25 * shared.MB)
5-var maxAssetSize = int64(1 * shared.MB)
6+var maxAssetSize = int64(10 * shared.MB)
7 
8 func NewConfigSite() *shared.ConfigSite {
9 	debug := shared.GetEnv("PGS_DEBUG", "0")