-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig_panel.toml
63 lines (48 loc) · 2.67 KB
/
config_panel.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
## -----------------------------------------------------------------------------
## IMPORTANT: In accordance with YunoHost's spirit, please keep things simple and
## do not overwhelm the admin with tons of misunderstandable or advanced settings.
## -----------------------------------------------------------------------------
version = "1.0"
[main]
name.en = "Main configuration"
name.fr = "Configuration principale"
services = ["__APP__", "__APP___workers"]
[main.config]
name.en = "Configuration options"
name.fr = "Options de configuration"
[main.config.data_dir]
ask.en = "Change data directory"
ask.fr = "Changer le répertoire de données"
type = "path"
default = "/home/yunohost.app/__APP__/"
help.en = "Change the data directory where are stored all the uploaded .gpx files and the profile pictures"
help.fr = "Change le répertoire de données où sont stockés tous les fichiers .gpx téléversés et les photos de profil"
bind = "UPLOAD_FOLDER:/var/www/__APP__/.env"
[main.config.weather_api_provider]
ask.en = "Change weather provider"
ask.fr = "Changer le fournisseur météo"
type = "select"
choices = ["", "visualcrossing"]
default = "visualcrossing"
help.en = "Change your weather provider by choosing one of the proposed ones"
help.fr = "Changer votre fournisseur météo en choisissant un de ceux qui vous sont proposés"
bind = "WEATHER_API_PROVIDER:/var/www/__APP__/.env"
[main.config.weather_api_key]
ask.en = "Change weather api key"
ask.fr = "Changer la clé api pour la météo"
type = "string"
help.en = "Set the api key given by the chosen weather provider"
help.fr = "Insérer la clé api donnée par le fournisseur météo choisi"
bind = "WEATHER_API_KEY:/var/www/__APP__/.env"
[main.config.email_url]
ask.en = "Change SMTP mail address"
ask.fr = "Changer l’adresse courriel SMTP"
type = "string"
help.en = "Has to be like this: smtp://username:[email protected]:587/?tls=True. ❗ Please backup your original credentials for the case you want to reset it. "
help.fr = "Doit avoir la forme suivante : smtp://username:[email protected]:587/?tls=True. ❗ Veuillez sauvegarder vos coordonnées initiales au cas où vous voudriez les réinitialiser."
bind = "email_url:/var/www/__APP__/.env"
[main.config.sender_email]
ask.en = "Change sender email"
ask.fr = "Changer l’adresse courriel d’envoi"
type = "email"
bind = "sender_email:/var/www/__APP__/.env"