fix: correct PHP_MODULE variable name in lychee-install script
This commit is contained in:
@@ -20,7 +20,7 @@ $STD apt install -y \
|
||||
jpegoptim
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
PHP_VERSION="8.4" PHP_FPM="YES" PHP_MODULES="bcmath,ldap,exif,gd,intl,imagick,redis,zip,pdo_pgsql,pcntl" setup_php
|
||||
PHP_VERSION="8.4" PHP_FPM="YES" PHP_MODULE="bcmath,ldap,exif,gd,intl,imagick,redis,zip,pdo_pgsql,pcntl" setup_php
|
||||
|
||||
setup_ffmpeg
|
||||
setup_imagemagick
|
||||
|
||||
@@ -1,48 +1,48 @@
|
||||
{
|
||||
"name": "Apache Airflow",
|
||||
"slug": "airflow",
|
||||
"categories": [
|
||||
19
|
||||
],
|
||||
"date_created": "2026-05-10",
|
||||
"type": "ct",
|
||||
"updateable": true,
|
||||
"privileged": false,
|
||||
"interface_port": 8080,
|
||||
"documentation": "https://airflow.apache.org/docs/",
|
||||
"website": "https://airflow.apache.org/",
|
||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/apache-airflow.webp",
|
||||
"description": "Apache Airflow is an open-source platform for developing, scheduling, and monitoring batch-oriented workflows. It uses Python to author DAGs (Directed Acyclic Graphs) that represent workflows, and provides a rich web UI for managing and observing pipelines.",
|
||||
"install_methods": [
|
||||
{
|
||||
"type": "default",
|
||||
"script": "ct/airflow.sh",
|
||||
"config_path": "/opt/airflow/.env",
|
||||
"resources": {
|
||||
"cpu": 2,
|
||||
"ram": 4096,
|
||||
"hdd": 16,
|
||||
"os": "Debian",
|
||||
"version": "13"
|
||||
}
|
||||
}
|
||||
],
|
||||
"default_credentials": {
|
||||
"username": "admin",
|
||||
"password": null
|
||||
},
|
||||
"notes": [
|
||||
{
|
||||
"text": "The initial admin password is randomly generated and stored in /opt/airflow/.env (AIRFLOW_ADMIN_PASSWORD).",
|
||||
"type": "info"
|
||||
"name": "Apache Airflow",
|
||||
"slug": "airflow",
|
||||
"categories": [
|
||||
19
|
||||
],
|
||||
"date_created": "2026-05-10",
|
||||
"type": "ct",
|
||||
"updateable": true,
|
||||
"privileged": false,
|
||||
"interface_port": 8080,
|
||||
"documentation": "https://airflow.apache.org/docs/",
|
||||
"website": "https://airflow.apache.org/",
|
||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/apache-airflow.webp",
|
||||
"description": "Apache Airflow is an open-source platform for developing, scheduling, and monitoring batch-oriented workflows. It uses Python to author DAGs (Directed Acyclic Graphs) that represent workflows, and provides a rich web UI for managing and observing pipelines.",
|
||||
"install_methods": [
|
||||
{
|
||||
"type": "default",
|
||||
"script": "ct/airflow.sh",
|
||||
"config_path": "/opt/airflow/.env",
|
||||
"resources": {
|
||||
"cpu": 2,
|
||||
"ram": 4096,
|
||||
"hdd": 16,
|
||||
"os": "Debian",
|
||||
"version": "13"
|
||||
}
|
||||
}
|
||||
],
|
||||
"default_credentials": {
|
||||
"username": "admin",
|
||||
"password": null
|
||||
},
|
||||
{
|
||||
"text": "Place your DAG files in /opt/airflow/dags/. The scheduler will pick them up automatically.",
|
||||
"type": "info"
|
||||
},
|
||||
{
|
||||
"text": "This installs Airflow with LocalExecutor. For distributed task execution, configure CeleryExecutor manually.",
|
||||
"type": "info"
|
||||
}
|
||||
]
|
||||
}
|
||||
"notes": [
|
||||
{
|
||||
"text": "The initial admin password is randomly generated and stored in /opt/airflow/.env (AIRFLOW_ADMIN_PASSWORD).",
|
||||
"type": "info"
|
||||
},
|
||||
{
|
||||
"text": "Place your DAG files in /opt/airflow/dags/. The scheduler will pick them up automatically.",
|
||||
"type": "info"
|
||||
},
|
||||
{
|
||||
"text": "This installs Airflow with LocalExecutor. For distributed task execution, configure CeleryExecutor manually.",
|
||||
"type": "info"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user