mirror of
https://github.com/YunoHost-Apps/pytition_ynh.git
synced 2024-09-03 20:16:08 +02:00
Update documentation
This commit is contained in:
parent
6ee7976d23
commit
c90bb7f46d
6 changed files with 39 additions and 41 deletions
|
@ -1,9 +1,11 @@
|
|||
Some long and extensive description of what the app is and does, lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||
Pytition is an application for privacy-friendly online petitions you can host on your own server.
|
||||
|
||||
### Features
|
||||
|
||||
- Ut enim ad minim veniam, quis nostrud exercitation ullamco ;
|
||||
- Laboris nisi ut aliquip ex ea commodo consequat ;
|
||||
- Duis aute irure dolor in reprehenderit in voluptate ;
|
||||
- Velit esse cillum dolore eu fugiat nulla pariatur ;
|
||||
- Excepteur sint occaecat cupidatat non proident, sunt in culpa."
|
||||
- Host petitions without compromising the privacy of your signatories.
|
||||
- No tracking, ever: CSS, JS and all resources are self-hosted. Pytition does not use CDN.
|
||||
- Responsive UI: works well on phones/tablets/laptops/desktops.
|
||||
- Multi-lingual UI with i18n: English, French, Italian, Occitan, Spanish.
|
||||
- You can pre-visualize petitions before publishing them.
|
||||
- Easy to use: petition content is typed-in via TinyMCE editors (like WordPress).
|
||||
- You can export signatures in CSV format.
|
||||
|
|
11
doc/DESCRIPTION_fr.md
Normal file
11
doc/DESCRIPTION_fr.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
Pytition permet d'héberger des pétitions respectueuses de la vie privée sur votre propre serveur.
|
||||
|
||||
### Features
|
||||
|
||||
- Hébergez des pétitions sans compromettre l'identité de vos signataires
|
||||
- Pas de tracking : CSS, JS et autres ressources sont auto-hébergées. Pas d'usage de CDN.
|
||||
- Interface réactive : fonctione sur smartphones et tablettes autant que sur ordinateur.
|
||||
- Interface traduite : anglais, français, italien, occitan, espagnol.
|
||||
- Vous pouvez prévisualiser les pétitions avant publication.
|
||||
- Simple à utiliser grâce à des éditeurs TinyMCE (comme Wordpress)
|
||||
- Vous pouvez exporter les signatures via CSV.
|
|
@ -1,12 +1 @@
|
|||
* Any known limitations, constrains or stuff not working, such as (but not limited to):
|
||||
* requiring a full dedicated domain ?
|
||||
* architectures not supported ?
|
||||
* not-working single-sign on or LDAP integration ?
|
||||
* the app requires an important amount of RAM / disk / .. to install or to work properly
|
||||
* etc...
|
||||
|
||||
* Other infos that people should be aware of, such as:
|
||||
* any specific step to perform after installing (such as manually finishing the install, specific admin credentials, ...)
|
||||
* how to configure / administrate the application if it ain't obvious
|
||||
* upgrade process / specificities / things to be aware of ?
|
||||
* security considerations ?
|
||||
* No Single-Sign-On and Yunohost LDAP support
|
||||
|
|
1
doc/DISCLAIMER_fr.md
Normal file
1
doc/DISCLAIMER_fr.md
Normal file
|
@ -0,0 +1 @@
|
|||
* Pas de support du Single-Sign-On ou du LDAP Yunohost.
|
Binary file not shown.
Before Width: | Height: | Size: 35 KiB |
|
@ -1,25 +1,25 @@
|
|||
{
|
||||
"name": "Example app",
|
||||
"id": "example",
|
||||
"name": "Pytition",
|
||||
"id": "pytition",
|
||||
"packaging_format": 1,
|
||||
"description": {
|
||||
"en": "Explain in *a few (10~15) words* the purpose of the app or what it actually does (it is meant to give a rough idea to users browsing a catalog of 100+ apps)",
|
||||
"fr": "Expliquez en *quelques* (10~15) mots l'utilité de l'app ou ce qu'elle fait (l'objectif est de donner une idée grossière pour des utilisateurs qui naviguent dans un catalogue de 100+ apps)"
|
||||
"en": "Host privacy-friendly online petitions",
|
||||
"fr": "Hébergez des pétitions en ligne respectueuses de la vie privée"
|
||||
},
|
||||
"version": "1.0~ynh1",
|
||||
"version": "2.4~ynh1",
|
||||
"url": "https://example.com",
|
||||
"upstream": {
|
||||
"license": "free",
|
||||
"website": "https://example.com",
|
||||
"demo": "https://demo.example.com",
|
||||
"admindoc": "https://yunohost.org/packaging_apps",
|
||||
"userdoc": "https://yunohost.org/apps",
|
||||
"code": "https://some.forge.com/example/example"
|
||||
"license": "BSD-3",
|
||||
"website": "https://github.com/pytition/Pytition",
|
||||
"demo": "https://demo.pytition.org",
|
||||
"admindoc": "https://pytition.readthedocs.io/en/latest/",
|
||||
"userdoc": "",
|
||||
"code": "https://github.com/pytition/Pytition"
|
||||
},
|
||||
"license": "free",
|
||||
"license": "BSD-3",
|
||||
"maintainer": {
|
||||
"name": "John doe",
|
||||
"email": "john.doe@example.com"
|
||||
"name": "Salamandar",
|
||||
"email": "felix@piedallu.me"
|
||||
},
|
||||
"requirements": {
|
||||
"yunohost": ">= 4.3.0"
|
||||
|
@ -27,7 +27,6 @@
|
|||
"multi_instance": true,
|
||||
"services": [
|
||||
"nginx",
|
||||
"php7.3-fpm",
|
||||
"mysql"
|
||||
],
|
||||
"arguments": {
|
||||
|
@ -39,8 +38,8 @@
|
|||
{
|
||||
"name": "path",
|
||||
"type": "path",
|
||||
"example": "/example",
|
||||
"default": "/example"
|
||||
"example": "/pytition",
|
||||
"default": "/pytition"
|
||||
},
|
||||
{
|
||||
"name": "is_public",
|
||||
|
@ -57,16 +56,12 @@
|
|||
"choices": ["fr", "en"],
|
||||
"default": "fr"
|
||||
},
|
||||
{
|
||||
"name": "admin",
|
||||
"type": "user"
|
||||
},
|
||||
{
|
||||
"name": "password",
|
||||
"type": "password",
|
||||
"help": {
|
||||
"en": "Use the help field to add an information for the admin about this question.",
|
||||
"fr": "Utilisez le champ aide pour ajouter une information à l'intention de l'administrateur à propos de cette question."
|
||||
"en": "Administrator password (username is admin)",
|
||||
"fr": "Mot de passe administrateur (l'identifiant est admin)"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue