fix: correct PHP_MODULE variable name in lychee-install script
This commit is contained in:
@@ -20,7 +20,7 @@ $STD apt install -y \
|
|||||||
jpegoptim
|
jpegoptim
|
||||||
msg_ok "Installed Dependencies"
|
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_ffmpeg
|
||||||
setup_imagemagick
|
setup_imagemagick
|
||||||
|
|||||||
@@ -1,48 +1,48 @@
|
|||||||
{
|
{
|
||||||
"name": "Apache Airflow",
|
"name": "Apache Airflow",
|
||||||
"slug": "airflow",
|
"slug": "airflow",
|
||||||
"categories": [
|
"categories": [
|
||||||
19
|
19
|
||||||
],
|
],
|
||||||
"date_created": "2026-05-10",
|
"date_created": "2026-05-10",
|
||||||
"type": "ct",
|
"type": "ct",
|
||||||
"updateable": true,
|
"updateable": true,
|
||||||
"privileged": false,
|
"privileged": false,
|
||||||
"interface_port": 8080,
|
"interface_port": 8080,
|
||||||
"documentation": "https://airflow.apache.org/docs/",
|
"documentation": "https://airflow.apache.org/docs/",
|
||||||
"website": "https://airflow.apache.org/",
|
"website": "https://airflow.apache.org/",
|
||||||
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/apache-airflow.webp",
|
"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.",
|
"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": [
|
"install_methods": [
|
||||||
{
|
{
|
||||||
"type": "default",
|
"type": "default",
|
||||||
"script": "ct/airflow.sh",
|
"script": "ct/airflow.sh",
|
||||||
"config_path": "/opt/airflow/.env",
|
"config_path": "/opt/airflow/.env",
|
||||||
"resources": {
|
"resources": {
|
||||||
"cpu": 2,
|
"cpu": 2,
|
||||||
"ram": 4096,
|
"ram": 4096,
|
||||||
"hdd": 16,
|
"hdd": 16,
|
||||||
"os": "Debian",
|
"os": "Debian",
|
||||||
"version": "13"
|
"version": "13"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"default_credentials": {
|
"default_credentials": {
|
||||||
"username": "admin",
|
"username": "admin",
|
||||||
"password": null
|
"password": null
|
||||||
},
|
|
||||||
"notes": [
|
|
||||||
{
|
|
||||||
"text": "The initial admin password is randomly generated and stored in /opt/airflow/.env (AIRFLOW_ADMIN_PASSWORD).",
|
|
||||||
"type": "info"
|
|
||||||
},
|
},
|
||||||
{
|
"notes": [
|
||||||
"text": "Place your DAG files in /opt/airflow/dags/. The scheduler will pick them up automatically.",
|
{
|
||||||
"type": "info"
|
"text": "The initial admin password is randomly generated and stored in /opt/airflow/.env (AIRFLOW_ADMIN_PASSWORD).",
|
||||||
},
|
"type": "info"
|
||||||
{
|
},
|
||||||
"text": "This installs Airflow with LocalExecutor. For distributed task execution, configure CeleryExecutor manually.",
|
{
|
||||||
"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