2021-05-20 10:21:18 +02:00
{% if manifest.id == "example" -%}
2024-03-20 04:27:08 +01:00
# {{ _('Packaging an app, starting from this example') }}
2021-05-10 17:23:40 +02:00
2024-03-25 06:31:10 +01:00
- {{ _("Copy this app before working on it, using the ['Use this template'](https://github.com/new?template_name=example_ynh&template_owner=YunoHost) button on the Github repo") }}
2024-03-24 05:45:21 +01:00
- {{ _("Edit the `manifest.toml` with app specific info") }}
2024-03-25 06:31:10 +01:00
- {{ _("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)") }}
2024-03-24 05:45:21 +01:00
- {{ _("Edit the `change_url` and `config` scripts too, or remove them if you have no use of them") }}
2024-03-25 06:31:10 +01:00
- {{ _("Add a `LICENSE` file for the package.") }}
- {{ _("NB: this `LICENSE` file is not meant to necessarily be the same LICENSE as the upstream app - it is only the LICENSE you want this package's code to published with and you can freely choose it! (If you don't know which to choose, we recommend [the AGPL-3](https://www.gnu.org/licenses/agpl-3.0.txt))") }}
2024-03-24 05:45:21 +01:00
- {{ _("Edit files under the `doc/` directory") }}
- {{ _("The `README.md` files are to be automatically generated by <https://github.com/YunoHost/apps/tree/master/tools/readme_generator>") }}
2021-05-10 17:23:40 +02:00
---
2021-05-26 18:10:47 +02:00
{% endif -%}
2021-05-10 17:23:40 +02:00
<!--
2024-03-24 05:45:21 +01:00
{{ _("N.B.: This README was automatically generated by <https://github.com/YunoHost/apps/tree/master/tools/readme_generator>
2024-03-20 04:27:08 +01:00
It shall NOT be edited by hand.") }}
2021-05-10 17:23:40 +02:00
-->
2024-03-20 04:27:08 +01:00
# {{ _("%(application_name)s for YunoHost")|format(application_name=manifest.name) }}
2021-04-23 20:01:40 +02:00
2024-03-20 04:27:08 +01:00
[![{{ _("Integration level") }}](https://dash.yunohost.org/integration/{{manifest.id}}.svg)](https://dash.yunohost.org/appci/app/{{manifest.id}}) ![{{ _("Working status") }}](https://ci-apps.yunohost.org/ci/badges/{{manifest.id}}.status.svg) ![{{ _("Maintenance status") }}](https://ci-apps.yunohost.org/ci/badges/{{manifest.id}}.maintain.svg)
2023-02-12 09:17:08 +01:00
2024-03-20 04:27:08 +01:00
[![{{ _("Install %(application_name)s with YunoHost")|format(application_name=manifest.name) }}](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app={{manifest.id}})
2021-04-23 20:01:40 +02:00
2024-03-22 06:22:19 +01:00
*[{{ _("Read this README is other languages.") }}](./ALL_README.md)*
2021-04-23 20:01:40 +02:00
2024-03-25 06:31:10 +01:00
> *{{ _("This package allows you to install %(application_name)s quickly and simply on a YunoHost server.")|format(application_name=manifest.name) }}*
> *{{ _("If you don't have YunoHost, please consult [the guide](https://yunohost.org/install) to learn how to install it.") }}*
2021-04-23 20:01:40 +02:00
2024-03-20 04:27:08 +01:00
## {{ _("Overview") }}
2021-04-23 20:01:40 +02:00
2021-08-22 16:57:07 +02:00
{% if description %}{{description}}{% else %}{{manifest.description[lang]}}{% endif %}
2024-03-25 06:31:10 +01:00
2024-03-25 00:58:54 +01:00
**{{ _("Shipped version:") }}** {% if upstream.version %}{{upstream.version}}{% else %}{{manifest.version}}
2022-10-06 23:12:37 +02:00
{% endif -%}
2021-04-23 20:01:40 +02:00
2022-05-13 01:19:44 +02:00
{% if upstream.demo %}
2024-03-25 00:58:54 +01:00
**{{ _("Demo:") }}** <{{upstream.demo}}>
2022-05-13 01:19:44 +02:00
{% endif -%}
2021-04-23 20:01:40 +02:00
2022-05-13 01:19:44 +02:00
{% if screenshots %}
2024-03-20 04:27:08 +01:00
## {{ _("Screenshots") }}
2021-04-23 20:01:40 +02:00
2021-05-20 10:21:18 +02:00
{% for screenshot in screenshots -%}
2024-03-20 04:27:08 +01:00
![{{ _("Screenshot of %(application_name)s")|format(application_name=manifest.name) }}](./{{screenshot}})
2021-04-23 20:01:40 +02:00
{% endfor %}
2021-05-20 10:21:18 +02:00
{% endif -%}
2021-04-23 20:01:40 +02:00
2021-05-20 10:21:18 +02:00
{% if disclaimer -%}
2024-03-20 04:27:08 +01:00
## {{ _("Disclaimers / important information") }}
2021-04-23 20:01:40 +02:00
{{ disclaimer }}
2021-05-20 10:21:18 +02:00
{% endif -%}
2021-04-23 20:01:40 +02:00
2022-02-23 08:18:05 +01:00
{% if antifeatures -%}
2024-03-20 04:27:08 +01:00
## :red_circle: {{ _("Antifeatures") }}
2022-02-23 08:18:05 +01:00
2022-08-05 16:39:38 +02:00
{% for antifeature in antifeatures.values() -%}
2022-02-23 08:18:05 +01:00
- **{{ antifeature.title }}**: {{ antifeature.description }}
2024-03-07 00:59:01 +01:00
{% endfor %}
2022-02-23 08:18:05 +01:00
{% endif -%}
2024-03-20 04:27:08 +01:00
## {{ _("Documentation and resources") }}
2021-04-23 20:01:40 +02:00
2024-03-20 04:27:08 +01:00
{% if upstream.website -%}- {{ _("Official app website:") }} <{{ upstream.website }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2024-03-20 04:27:08 +01:00
{% if upstream.userdoc -%}- {{ _("Official user documentation:") }} <{{ upstream.userdoc }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2024-03-20 04:27:08 +01:00
{% if upstream.admindoc -%}- {{ _("Official admin documentation:") }} <{{ upstream.admindoc }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2024-03-20 04:27:08 +01:00
{% if upstream.code -%}- {{ _("Upstream app code repository:") }} <{{ upstream.code }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2024-03-20 04:27:08 +01:00
- {{ _("YunoHost Store:") }} <https://apps.yunohost.org/app/{{manifest.id}}>
- {{ _("Report a bug:") }} <https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/issues>
2021-04-23 20:01:40 +02:00
2024-03-20 04:27:08 +01:00
## {{ _("Developer info") }}
2021-04-23 20:01:40 +02:00
2024-03-25 06:31:10 +01:00
{{ _("Please send your pull request to the [testing branch](%(testing_branch_url)s).")|format(testing_branch_url="https://github.com/YunoHost-Apps/" + manifest.id + "_ynh/tree/testing") }}
2024-03-20 04:27:08 +01:00
2024-03-25 00:58:54 +01:00
{{ _("To try the testing branch, please proceed like that:") }}
2022-05-13 00:13:27 +02:00
2024-03-11 00:53:56 +01:00
```bash
2021-04-23 20:01:40 +02:00
sudo yunohost app install https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing --debug
2024-03-24 05:45:21 +01:00
{{ _("or") }}
2021-04-23 20:01:40 +02:00
sudo yunohost app upgrade {{manifest.id}} -u https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing --debug
```
2024-03-20 04:27:08 +01:00
**{{ _("More info regarding app packaging:") }}** <https://yunohost.org/packaging_apps>
2024-03-07 00:59:01 +01:00