Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.8 #396

Merged
merged 3 commits into from
Jan 20, 2025
Merged

1.0.8 #396

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ SENTRY_TRACES_SAMPLE_RATE=1
#MJML_API_ID=
#MJML_API_SECRET=

MJML_BINARY_PATH=/usr/bin/mjml
#MJML_BINARY_PATH=/usr/bin/mjml
MJML_API_URL=http://mjml:15500/v1

TRACKER_ENABLED=false
REPORTBRO_URL="https://www.reportbro.com/report/run"
FILESYSTEM_DRIVER=s3
Expand All @@ -57,3 +59,4 @@ AWS_BUCKET=wellms
AWS_ENDPOINT="http://minio:9000"
AWS_URL="http://storage.localhost:1001/wellms"
AWS_USE_PATH_STYLE_ENDPOINT=true
H5P_AGGREGATE_ASSETS=true
93 changes: 46 additions & 47 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion config/escola_templates_email.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

return [
'mjml' => [
'use_api' => !empty(env('MJML_API_ID')),
'api_url' => env('MJML_API_URL'),
'use_api' => !empty(env('MJML_API_URL')),
//
'binary_path' => env('MJML_BINARY_PATH'),
//
Expand Down
45 changes: 45 additions & 0 deletions config/hh5p.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php
return [
'aggregateAssets' => env('H5P_AGGREGATE_ASSETS', true),
'domain' => 'domain',
'url' => 'h5p',
'ajaxSetFinished' => 'ajaxSetFinished',
'ajaxContentUserData' => 'contentUserData',
'saveFreq' => 'saveFreq',
'l10n' => 'l10n',
'filesPath' => 'filesPath',
'fileIcon' => 'fileIcon',
'ajaxPath' => 'hh5p.index',
'libraryUrl' => 'h5p-editor',
'get_laravelh5p_url' => 'editor',
'get_h5peditor_url' => 'h5p-editor',
'get_language' => 'en',
'language' => 'en',
'get_h5pcore_url' => 'h5p-core',

// Content screen setting

'h5p_show_display_option' => false,
'h5p_frame' => true,
'h5p_export' => false,
'h5p_embed' => false,
'h5p_copyright' => false,
'h5p_icon' => false,
'h5p_track_user' => false,
'h5p_ext_communication' => true,
'h5p_save_content_state' => true,
'h5p_save_content_frequency' => 30,
'h5p_site_key' => [
'h5p_h5p_site_uuid' => false,
],
//'h5p_content_type_cache_updated_at' => 0,
'h5p_check_h5p_requirements' => false,
'h5p_hub_is_enabled' => true,
'h5p_version' => '1.23.0',

'guzzle' => [],

'h5p_storage_path' => 'h5p',
'h5p_content_storage_path' => 'h5p/content/',
'h5p_library_url' => 'h5p/libraries'
];
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ services:
image: escolalms/reportbro-server:latest

mjml:
image: adrianrudnik/mjml-server
image: danihodovic/mjml-server

# ports:
# - 8080:80

Expand Down
Loading