-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
92 lines (92 loc) · 3.17 KB
/
manifest.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "Application Django",
"id": "django_app",
"packaging_format": 1,
"version": "2019-03-10",
"description": {
"en": "A django app.",
"fr": "Une application django."
},
"license": "WTFPL-2.0",
"maintainer": {
"name": "jojo144",
"email": "[email protected]",
"url": "https://github.com/Jojo144/django_app_ynh"
},
"url": "https://github.com/Jojo144/django_app_ynh",
"requirements": {
"yunohost": ">> 3.0"
},
"multi_instance": true,
"services": [
"nginx"
],
"arguments": {
"install" : [
{
"name": "repo",
"type": "string",
"ask": {
"en": "Give the url of the git repository of your application (can be a local clone)",
"fr": "Donnez l'url du dépôt git de votre application (ce peut être un clone local)"
},
"example": "~/myapp or https://github.com/User/myapp"
},
{
"name": "project",
"type": "string",
"ask": {
"en": "Give the name of your Django project (the one you used when with startproject)",
"fr": "Donnez le nom de votre projet Django (celui que vous avez utilisez avec startproject)"
},
"example": "mysite"
},
{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain for your Django app",
"fr": "Choisissez un nom de domaine pour vorte application Django"
},
"example": "domain.org"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for your Django app",
"fr": "Choisissez l'adresse pour votre application Django"
},
"example": "/django_app",
"default": "/django_app"
},
{
"name": "admin",
"type": "string",
"ask": {
"en": "Choose the administrator of your app (does not need to be an existing YunoHost user)",
"fr": "Choisissez l'administrateur de votre application (ne doit pas nécessairement être un utilisateur YunoHost)"
},
"example": "johndoe"
},
{
"name": "passwd",
"type": "password",
"ask": {
"en": "Choose a password for this administrator",
"fr": "Choisissez un mot de passe pour cet administrateur"
},
"example": "johndoe"
},
{
"name": "email",
"type": "string",
"ask": {
"en": "Choose email were send notification",
"fr": "Choisissez l'email vers lequel envoyer les notifications"
},
"example": "[email protected]"
}
]
}
}