Compare commits

..

2 Commits

4 changed files with 14 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ services:
- mercure_config:/config
tty: true
environment:
TZ: America/Chicago
MERCURE_PUBLISHER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
MERCURE_SUBSCRIBER_JWT_KEY: '!ChangeThisMercureHubJWTSecretKey!'
depends_on:
@@ -37,6 +38,8 @@ services:
- $PWD:/app
- $PWD/var/download:/var/download
tty: true
environment:
TZ: America/Chicago
command: php /app/bin/console messenger:consume async -vv --time-limit=3600 --limit=10
@@ -45,6 +48,8 @@ services:
restart: unless-stopped
volumes:
- $PWD:/app
environment:
TZ: America/Chicago
command: php /app/bin/console messenger:consume scheduler_monitor -vv
tty: true
@@ -55,6 +60,8 @@ services:
- redis_data:/data
command: redis-server --maxmemory 512MB
restart: unless-stopped
environment:
TZ: America/Chicago
database:
@@ -64,6 +71,7 @@ services:
volumes:
- mysql:/var/lib/mysql
environment:
TZ: America/Chicago
MYSQL_DATABASE: app
MYSQL_USERNAME: app
MYSQL_PASSWORD: password

View File

@@ -1,5 +1,7 @@
twig:
file_name_pattern: '*.twig'
date:
timezone: '%env(default:app.default.timezone:TZ)%'
when@test:
twig:

View File

@@ -21,6 +21,9 @@ parameters:
app.cache.adapter.default: 'filesystem'
app.cache.redis.host.default: 'redis://redis'
# Various configs
app.default.timezone: 'America/Chicago'
services:
# default configuration for services in *this* file
_defaults:

View File

@@ -1,4 +1,4 @@
<tr{{ attributes }} id="monitor_{{ monitor.id }}">
<tr{{ attributes }} id="monitor_{{ monitor.id }}" class="hover:bg-gray-200">
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-stone-800 truncate">
{{ monitor.title }}
</td>