Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@ build_groupfolders_app: ## Install and build groupfolders app
npm ci && \
npm run build

build_tables_app: ## Install and build tables app
cd apps-external/tables && \
composer install --no-dev -o && \
npm ci && \
npm run build

build_deck_app: ## Install and build deck app
cd apps-external/deck && \
composer install --no-dev -o && \
Expand Down
3 changes: 3 additions & 0 deletions configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,9 @@ configure_ionos_mailconfig_api() {
execute_occ_command config:app:set --value "${IONOS_MAILCONFIG_API_URL}" --type string mail ionos_mailconfig_api_base_url
execute_occ_command config:app:set --value "${IONOS_MAILCONFIG_API_USER}" --type string mail ionos_mailconfig_api_auth_user
execute_occ_command config:app:set --value "${IONOS_MAILCONFIG_API_PASS}" --sensitive --type string mail ionos_mailconfig_api_auth_pass

log_info "Enable groupfolders app"
execute_occ_command app:enable groupfolders
}

#===============================================================================
Expand Down