From e524633da6ca70dfa88dd1df08420bf26a456890 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Thu, 5 May 2022 16:47:03 +0200 Subject: [PATCH] First implementation --- .gitignore | 2 - README.md | 39 +-- README_fr.md | 46 ++- check_process | 11 - conf/app.src | 4 +- conf/application.yml | 13 + conf/cron | 1 + conf/delayed_job_cron.sh | 5 + conf/nginx.conf | 32 +-- conf/php-fpm.conf | 430 ----------------------------- conf/schedule.rb | 13 + conf/storage.yml | 34 +++ conf/systemd.service | 45 --- config_panel.toml.example | 295 -------------------- manifest.json | 22 +- scripts/_common.sh | 9 +- scripts/backup | 43 +-- scripts/change_url | 46 ++- scripts/config | 102 ------- scripts/install | 355 ++++++------------------ scripts/remove | 85 +----- scripts/restore | 144 ++++------ scripts/upgrade | 199 ++++++------- scripts/ynh_install_ruby__2 | 310 +++++++++++++++++++++ sources/extra_files/app/.gitignore | 2 - sources/patches/.gitignore | 2 - 26 files changed, 709 insertions(+), 1580 deletions(-) delete mode 100644 .gitignore create mode 100644 conf/application.yml create mode 100644 conf/cron create mode 100644 conf/delayed_job_cron.sh delete mode 100644 conf/php-fpm.conf create mode 100644 conf/schedule.rb create mode 100644 conf/storage.yml delete mode 100644 conf/systemd.service delete mode 100644 config_panel.toml.example delete mode 100644 scripts/config create mode 100644 scripts/ynh_install_ruby__2 delete mode 100644 sources/extra_files/app/.gitignore delete mode 100644 sources/patches/.gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 783a4ae..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*~ -*.sw[op] diff --git a/README.md b/README.md index 565d57e..a6f7f9f 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,3 @@ -# Packaging your an app, starting from this example - -- Copy this app before working on it, using the ['Use this template'](https://github.com/YunoHost/example_ynh/generate) button on the Github repo. -- Edit the `manifest.json` with app specific info. -- Edit the `install`, `upgrade`, `remove`, `backup`, and `restore` scripts, and any relevant conf files in `conf/`. - - Using the [script helpers documentation.](https://yunohost.org/packaging_apps_helpers) -- Add a `LICENSE` file for the package. -- Edit `doc/DISCLAIMER*.md` -- The `README.md` files are to be automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator - ----