Compare commits

..

1 Commits

4 changed files with 84 additions and 26 deletions

View File

@ -27,7 +27,6 @@ from sqlalchemy import or_, and_
from app.logic.game_support import GameSupportResolver
from app.models import PackageRelease, db, Package, PackageState, PackageScreenshot, MetaPackage, User, \
NotificationType, PackageUpdateConfig, License, UserRank, PackageType, PackageGameSupport
from app.tasks.emails import send_pending_digests
from app.tasks.forumtasks import importTopicList, checkAllForumAccounts
from app.tasks.importtasks import importRepoScreenshot, checkZipRelease, check_for_updates
from app.utils import addNotification, get_system_user
@ -331,8 +330,3 @@ def detect_game_support():
resolver = GameSupportResolver()
resolver.update_all()
db.session.commit()
@action("Send pending notif digests")
def do_send_pending_digests():
send_pending_digests.delay()

View File

@ -17,23 +17,20 @@
</ul>
{% endfor %}
{% set other_notifications = notifications | selectattr("package", "none") %}
{% if other_notifications %}
{% for group in notifications | selectattr("package", "none") %}
<h2>
{{ _("Other Notifications") }}
</h2>
<ul>
{% for notification in other_notifications %}
{% for notification in group %}
<li>
<a href="{{ notification.url | abs_url }}">{{ notification.title }}</a> -
{{ _("from %(username)s.", username=notification.causer.username) }}
</li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
<p style="margin-top: 3em;">
<a class="btn" href="{{ abs_url_for('notifications.list_all') }}">
{{ _("View Notifications") }}

68
docker-compose.debug.yml Normal file
View File

@ -0,0 +1,68 @@
version: '3'
services:
db:
image: "postgres:14.1"
volumes:
- "./data/db:/var/lib/postgresql/data"
environment: &env
- POSTGRES_USER=contentdb
- POSTGRES_PASSWORD=password
- POSTGRES_DB=contentdb
- FLASK_DEBUG=1
- FLASK_CONFIG=../config.cfg
adminer:
image: adminer
restart: always
environment:
- ADMINER_DEFAULT_SERVER=db
- ADMINER_DESIGN=pepa-linha
ports:
- 8081:8080
redis:
image: 'redis:6.2-alpine'
command: redis-server
volumes:
- './data/redis:/data'
app:
build: .
container_name: contentdb_app_1
command: ./utils/entrypoint.sh
environment: *env
ports:
- 5123:5123
volumes:
- "./data/uploads:/var/cdb/uploads"
- "./app:/source/app"
- "./migrations:/source/migrations"
depends_on:
- db
- redis
worker:
build: .
command: celery -A app.tasks.celery worker --concurrency 1
environment: *env
volumes:
- "./data/uploads:/var/cdb/uploads"
- "./app:/home/cdb/app"
depends_on:
- redis
beat:
build: .
command: celery -A app.tasks.celery beat
environment: *env
depends_on:
- redis
exporter:
image: ovalmoney/celery-exporter
environment: *env
ports:
- 5125:9540
depends_on:
- redis

View File

@ -1,11 +1,17 @@
version: '3'
services:
db:
image: "postgres:14.1"
volumes:
- "./data/db:/var/lib/postgresql/data"
env_file:
- config.env
environment: &env
- POSTGRES_USER=contentdb
- POSTGRES_PASSWORD=password
- POSTGRES_DB=contentdb
- FLASK_DEBUG=0
- FLASK_CONFIG=../config.cfg
redis:
image: 'redis:6.2-alpine'
@ -15,9 +21,9 @@ services:
app:
build: .
container_name: contentdb_app_1
command: ./utils/entrypoint.sh
env_file:
- config.env
environment: *env
ports:
- 5123:5123
volumes:
@ -31,10 +37,7 @@ services:
worker:
build: .
command: celery -A app.tasks.celery worker --concurrency 1
env_file:
- config.env
environment:
- FLASK_CONFIG=../config.cfg
environment: *env
volumes:
- "./data/uploads:/var/cdb/uploads"
- "./app:/home/cdb/app"
@ -44,17 +47,13 @@ services:
beat:
build: .
command: celery -A app.tasks.celery beat
env_file:
- config.env
environment:
- FLASK_CONFIG=../config.cfg
environment: *env
depends_on:
- redis
exporter:
image: ovalmoney/celery-exporter
env_file:
- config.env
environment: *env
ports:
- 5125:9540
depends_on: