mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-09 09:21:03 +01:00
fix: auto-fix linting issues
This commit is contained in:
committed by
github-actions[bot]
parent
8665d794c4
commit
fd67bfbc63
4
.github/ISSUE_TEMPLATE/BUG-REPORT.yml
vendored
4
.github/ISSUE_TEMPLATE/BUG-REPORT.yml
vendored
@@ -2,9 +2,7 @@
|
||||
name: "🐛 Bug Report"
|
||||
description: Create a new ticket for a bug.
|
||||
title: "🐛 [Addon name] <title>"
|
||||
labels: [
|
||||
"bug"
|
||||
]
|
||||
labels: ["bug"]
|
||||
body:
|
||||
- type: textarea
|
||||
id: description
|
||||
|
||||
5
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
5
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
@@ -2,10 +2,7 @@
|
||||
name: "✨ Feature request"
|
||||
description: Suggest an idea for this project
|
||||
title: "✨ [REQUEST] Addon name"
|
||||
labels: [
|
||||
"prevent stale",
|
||||
"enhancement"
|
||||
]
|
||||
labels: ["prevent stale", "enhancement"]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# List of environment variables, see : https://github.com/vogler/free-games-claimer#configuration--options
|
||||
SHOW='1'
|
||||
WIDTH='1280'
|
||||
HEIGHT='1280'
|
||||
HEIGHT=1280
|
||||
LOGIN_TIMEOUT=180
|
||||
NOTIFY_TITLE='Free Games Claimer'
|
||||
TIMEOUT='60'
|
||||
LOGIN_TIMEOUT='180'
|
||||
# List of environment variables, see : https://github.com/vogler/free-games-claimer#configuration--options
|
||||
SHOW=1
|
||||
TIMEOUT=60
|
||||
WIDTH=1280
|
||||
|
||||
@@ -61,7 +61,8 @@ devices:
|
||||
- "/dev/nvme0"
|
||||
- "/dev/nvme1"
|
||||
- "/dev/nvme2"
|
||||
environment: {
|
||||
environment:
|
||||
{
|
||||
"GRAMPSWEB_TREE": "Gramps Web",
|
||||
"GRAMPSWEB_CELERY_CONFIG__broker_url": "redis://localhost:6379/0",
|
||||
"GRAMPSWEB_CELERY_CONFIG__result_backend": "redis://localhost:6379/0",
|
||||
@@ -73,15 +74,11 @@ environment: {
|
||||
"GRAMPSWEB_STATIC_PATH": "/app/static",
|
||||
"GRAMPSWEB_THUMBNAIL_CACHE_CONFIG__CACHE_DIR": "/config/thumbnail_cache",
|
||||
"GRAMPSWEB_REPORT_DIR": "/config/cache/reports",
|
||||
"GRAMPSWEB_EXPORT_DIR": "/config/cache/export"
|
||||
"GRAMPSWEB_EXPORT_DIR": "/config/cache/export",
|
||||
}
|
||||
image: ghcr.io/alexbelgium/grampsweb-{arch}
|
||||
init: false
|
||||
options: {
|
||||
"certfile": "fullchain.pem",
|
||||
"keyfile": "privkey.pem",
|
||||
"ssl": false
|
||||
}
|
||||
options: { "certfile": "fullchain.pem", "keyfile": "privkey.pem", "ssl": false }
|
||||
map:
|
||||
- type: addon_config
|
||||
read_only: false
|
||||
@@ -92,7 +89,8 @@ ports:
|
||||
5001/tcp: 5000
|
||||
ports_description:
|
||||
5001/tcp: webui
|
||||
schema: {
|
||||
schema:
|
||||
{
|
||||
"GRAMPSWEB_SECRET_KEY": "str?",
|
||||
"GRAMPSWEB_BASE_URL": "str?",
|
||||
"GRAMPSWEB_EMAIL_HOST": "str?",
|
||||
@@ -103,7 +101,7 @@ schema: {
|
||||
"GRAMPSWEB_DEFAULT_FROM_EMAIL": "email?",
|
||||
"certfile": "str?",
|
||||
"keyfile": "str?",
|
||||
"ssl": "bool?"
|
||||
"ssl": "bool?",
|
||||
}
|
||||
services:
|
||||
- mysql:want
|
||||
|
||||
@@ -61,19 +61,18 @@ devices:
|
||||
- "/dev/nvme0"
|
||||
- "/dev/nvme1"
|
||||
- "/dev/nvme2"
|
||||
environment: {
|
||||
environment:
|
||||
{
|
||||
"APP_TRUSTED_PROXIES": "*",
|
||||
"APP_ENV": "production",
|
||||
"APP_DEBUG": "false",
|
||||
"MAIL_MAILER": "log",
|
||||
"DEFAULT_STORAGE_LIMIT": "1024",
|
||||
"DEFAULT_MAX_STORAGE_SIZE": "1024"
|
||||
"DEFAULT_MAX_STORAGE_SIZE": "1024",
|
||||
}
|
||||
image: ghcr.io/alexbelgium/monica-{arch}
|
||||
init: false
|
||||
options: {
|
||||
"database": "sqlite"
|
||||
}
|
||||
options: { "database": "sqlite" }
|
||||
map:
|
||||
- type: addon_config
|
||||
read_only: false
|
||||
@@ -82,7 +81,8 @@ ports:
|
||||
80/tcp: 8181
|
||||
ports_description:
|
||||
80/tcp: webui
|
||||
schema: {
|
||||
schema:
|
||||
{
|
||||
"database": "list(sqlite|MariaDB_addon|Mysql_external)",
|
||||
"APP_KEY": "str?",
|
||||
"DB_DATABASE": "str?",
|
||||
@@ -97,7 +97,7 @@ schema: {
|
||||
"MAIL_PASSWORD": "str?",
|
||||
"MAIL_ENCRYPTION": "str?",
|
||||
"MAIL_FROM_ADDRESS": "str?",
|
||||
"MAIL_FROM_NAME": "str?"
|
||||
"MAIL_FROM_NAME": "str?",
|
||||
}
|
||||
services:
|
||||
- mysql:want
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
### Compose parameters
|
||||
|
||||
SQLITE=0
|
||||
NOSWAG=0
|
||||
SQLITE=0
|
||||
|
||||
# Port on which the noswag nginx container is listening
|
||||
# You don't have to bother about this if you use the swag version
|
||||
NOSWAG_PORT=80
|
||||
|
||||
|
||||
### Run parameters
|
||||
|
||||
PUID=0
|
||||
PGID=0
|
||||
PUID=0
|
||||
TZ=Europe/Zurich
|
||||
URL=your.domain
|
||||
|
||||
@@ -23,16 +22,16 @@ USE_HTTPS=1
|
||||
|
||||
# You don't have to bother about this if you use SQLite
|
||||
MYSQL_HOST=db
|
||||
MYSQL_USER_PASSWD=secret
|
||||
MYSQL_ROOT_PASSWD=secret
|
||||
MYSQL_PORT=3306
|
||||
MYSQL_ROOT_PASSWD=secret
|
||||
MYSQL_USER=seafile
|
||||
MYSQL_USER_PASSWD=secret
|
||||
|
||||
### Volume parameters
|
||||
|
||||
SEAFILE_CONF_DIR=./seafile/conf
|
||||
SEAFILE_LOGS_DIR=./seafile/logs
|
||||
SEAFILE_DATA_DIR=./seafile/seafile-data
|
||||
SEAFILE_LOGS_DIR=./seafile/logs
|
||||
SEAFILE_SEAHUB_DIR=./seafile/seahub-data
|
||||
|
||||
# You don't have to bother about this if you use SQLite
|
||||
|
||||
Reference in New Issue
Block a user