Format configuration files for consistency and readability. Update docker-compose.coolify.yml to use single quotes for labels. Adjust pnpm-lock.yaml to format resolution entries uniformly. Clean up README.md by removing an empty checklist item. Standardize quotes in renovate.json and .gitea/workflows/renovate.yml. Enhance HTML structure in app.html for better readability.
This commit is contained in:
@@ -2,7 +2,7 @@ name: renovate
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "@daily"
|
||||
- cron: '@daily'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
@@ -19,6 +19,6 @@ jobs:
|
||||
run: curl -sL https://git.quad4.io/Quad4-Extra/renovate-config/raw/branch/master/config.js -o config.js
|
||||
- run: renovate
|
||||
env:
|
||||
RENOVATE_CONFIG_FILE: "config.js"
|
||||
LOG_LEVEL: "debug"
|
||||
RENOVATE_CONFIG_FILE: 'config.js'
|
||||
LOG_LEVEL: 'debug'
|
||||
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
||||
|
||||
@@ -36,7 +36,7 @@ Web News follows a "zero-knowledge" philosophy:
|
||||
- [ ] Export article(s)
|
||||
- [ ] Export/Import OPML on add feed modal
|
||||
- [ ] Favicons for feeds and caching
|
||||
- [ ]
|
||||
- [ ]
|
||||
|
||||
## Getting Started
|
||||
|
||||
|
||||
@@ -20,9 +20,9 @@ services:
|
||||
volumes:
|
||||
- web-news-data:/app/data
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.middlewares.web-news-ratelimit.ratelimit.average=100"
|
||||
- "traefik.http.middlewares.web-news-ratelimit.ratelimit.burst=50"
|
||||
- 'traefik.enable=true'
|
||||
- 'traefik.http.middlewares.web-news-ratelimit.ratelimit.average=100'
|
||||
- 'traefik.http.middlewares.web-news-ratelimit.ratelimit.burst=50'
|
||||
security_opt:
|
||||
- no-new-privileges:true
|
||||
restart: unless-stopped
|
||||
|
||||
2417
pnpm-lock.yaml
generated
2417
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||
}
|
||||
|
||||
14
src/app.html
14
src/app.html
@@ -5,24 +5,30 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
||||
<title>Web News - Personal RSS Reader</title>
|
||||
<meta name="description" content="A fast, clean, and private RSS reader for all your news." />
|
||||
|
||||
|
||||
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
|
||||
<link rel="shortcut icon" href="/favicon.svg" />
|
||||
<link rel="apple-touch-icon" href="/favicon.svg" />
|
||||
<link rel="manifest" href="/manifest.json" />
|
||||
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://webnews.quad4.io" />
|
||||
<meta property="og:title" content="Web News" />
|
||||
<meta property="og:description" content="A fast, clean, and private RSS reader for all your news." />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="A fast, clean, and private RSS reader for all your news."
|
||||
/>
|
||||
<meta property="og:image" content="/favicon.svg" />
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
<meta property="twitter:url" content="https://webnews.quad4.io" />
|
||||
<meta property="twitter:title" content="Web News" />
|
||||
<meta property="twitter:description" content="A fast, clean, and private RSS reader for all your news." />
|
||||
<meta
|
||||
property="twitter:description"
|
||||
content="A fast, clean, and private RSS reader for all your news."
|
||||
/>
|
||||
<meta property="twitter:image" content="/favicon.svg" />
|
||||
|
||||
<meta name="theme-color" content="#1a73e8" />
|
||||
|
||||
Reference in New Issue
Block a user