2021-05-20 10:21:18 +02:00
{% if manifest.id == "example" -%}
2022-06-07 22:48:50 +02:00
# Packaging an app, starting from this example
2021-05-10 17:23:40 +02:00
2022-05-21 16:09:09 +02:00
* 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`
2024-02-15 14:57:57 +01:00
* 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-02-15 14:57:57 +01:00
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/readme_generator
2021-05-10 17:23:40 +02:00
It shall NOT be edited by hand.
-->
2021-04-23 20:01:40 +02:00
# {{manifest.name}} for YunoHost
2023-01-21 23:39:22 +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
2021-05-20 10:21:18 +02:00
[![Install {{manifest.name}} with YunoHost](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
*[Lire ce readme en français.](./README_fr.md)*
2021-05-20 10:21:18 +02:00
> *This package allows you to install {{manifest.name}} quickly and simply on a YunoHost server.
2021-04-23 20:01:40 +02:00
If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/install) to learn how to install it.*
## Overview
2021-08-22 16:57:07 +02:00
{% if description %}{{description}}{% else %}{{manifest.description[lang]}}{% endif %}
2021-04-23 20:01:40 +02:00
2022-10-06 23:12:37 +02:00
**Shipped version:** {% if upstream.version %}{{upstream.version}}{% else %}{{manifest.version}}
{% endif -%}
2021-04-23 20:01:40 +02:00
2022-05-13 01:19:44 +02:00
{% if upstream.demo %}
**Demo:** {{upstream.demo}}
{% endif -%}
2021-04-23 20:01:40 +02:00
2022-05-13 01:19:44 +02:00
{% if screenshots %}
2021-04-23 20:01:40 +02:00
## Screenshots
2021-05-20 10:21:18 +02:00
{% for screenshot in screenshots -%}
2022-05-13 00:13:27 +02:00
![Screenshot of {{manifest.name}}](./doc/screenshots/{{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 -%}
2021-04-23 20:01:40 +02:00
## Disclaimers / important information
{{ 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 -%}
2022-08-05 16:41:27 +02: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 }}
2022-08-05 16:39:38 +02:00
2022-02-23 08:18:05 +01:00
{% endfor -%}
{% endif -%}
2021-04-23 20:01:40 +02:00
## Documentation and resources
2022-05-13 18:15:34 +02:00
{% if upstream.website -%}* Official app website: <{{ upstream.website }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2022-05-13 18:15:34 +02:00
{% if upstream.userdoc -%}* Official user documentation: <{{ upstream.userdoc }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2022-05-13 18:15:34 +02:00
{% if upstream.admindoc -%}* Official admin documentation: <{{ upstream.admindoc }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2022-05-13 18:15:34 +02:00
{% if upstream.code -%}* Upstream app code repository: <{{ upstream.code }}>
2021-05-20 10:21:18 +02:00
{% endif -%}
2023-10-26 14:22:24 +02:00
* YunoHost Store: <https://apps.yunohost.org/app/{{manifest.id}}>
2022-05-13 18:15:34 +02:00
* Report a bug: <https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/issues>
2021-04-23 20:01:40 +02:00
## Developer info
Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing).
To try the testing branch, please proceed like that.
2022-05-13 00:13:27 +02: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
or
sudo yunohost app upgrade {{manifest.id}} -u https://github.com/YunoHost-Apps/{{manifest.id}}_ynh/tree/testing --debug
```
2022-05-13 18:15:34 +02:00
**More info regarding app packaging:** <https://yunohost.org/packaging_apps>