- commit
- 3c33ed8
- parent
- a533a40
- author
- Eric Bower
- date
- 2024-09-23 16:13:48 +0000 UTC
fix(feeds): url
4 files changed,
+4,
-4
+1,
-1
1@@ -109,7 +109,7 @@ Create a blogs.txt file:
2 Then upload it to us:
3
4 ```bash
5-scp blogs.txt feeds.sh:/
6+scp blogs.txt feeds.pico.sh:/
7 ```
8
9 After the daily interval has been reached, you will receive an email with your
+1,
-1
1@@ -274,7 +274,7 @@ services:
2 env_file:
3 - .env.prod
4 environment:
5- APP_DOMAIN: ${FEEDS_DOMAIN:-feeds.sh}
6+ APP_DOMAIN: ${FEEDS_DOMAIN:-feeds.pico.sh}
7 APP_EMAIL: ${FEEDS_EMAIL:-hello@pico.sh}
8 volumes:
9 - ${FEEDS_CADDYFILE}:/etc/caddy/Caddyfile
+1,
-1
1@@ -6,7 +6,7 @@ import (
2
3 func NewConfigSite() *shared.ConfigSite {
4 debug := shared.GetEnv("FEEDS_DEBUG", "0")
5- domain := shared.GetEnv("FEEDS_DOMAIN", "feeds.sh")
6+ domain := shared.GetEnv("FEEDS_DOMAIN", "feeds.pico.sh")
7 port := shared.GetEnv("FEEDS_WEB_PORT", "3000")
8 protocol := shared.GetEnv("FEEDS_PROTOCOL", "https")
9 storageDir := shared.GetEnv("IMGS_STORAGE_DIR", ".storage")
1@@ -53,7 +53,7 @@ type ListMetaData struct {
2 ListType string // https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type
3 DigestInterval string
4 Email string
5- InlineContent bool // allows content inlining to be disabled in feeds.sh emails
6+ InlineContent bool // allows content inlining to be disabled in feeds.pico.sh emails
7 }
8
9 var urlToken = "=>"