1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/codimd_ynh.git synced 2024-09-03 18:16:32 +02:00

add strings

This commit is contained in:
liberodark 2018-11-21 17:26:37 +01:00
parent af5a6594d1
commit 865f11fee9
2 changed files with 46 additions and 13 deletions

View file

@ -32,9 +32,9 @@
"addGoogleAnalytics": true "addGoogleAnalytics": true
}, },
"db": { "db": {
"username": "codimd", "username": "__DB_USER__",
"password": "codimd", "password": "__DB_PASS__",
"database": "codimd", "database": "__DB_NAME__",
"host": "localhost", "host": "localhost",
"port": "5432", "port": "5432",
"dialect": "postgres" "dialect": "postgres"

View file

@ -1,10 +1,10 @@
{ {
"name": "EmbyServer", "name": "CodiMD",
"id": "embyserver", "id": "codimd",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "EmbyServer package for YunoHost.", "en": "CodiMD package for YunoHost.",
"fr": "EmbyServer pour YunoHost." "fr": "CodiMD pour YunoHost."
}, },
"version": "3.5.3.0", "version": "3.5.3.0",
"url": "https://emby.media/", "url": "https://emby.media/",
@ -27,8 +27,8 @@
"name": "domain", "name": "domain",
"type": "domain", "type": "domain",
"ask": { "ask": {
"en": "Choose a domain name for EmbyServer", "en": "Choose a domain name for CodiMD",
"fr": "Choisissez un nom de domaine pour EmbyServer" "fr": "Choisissez un nom de domaine pour CodiMD"
}, },
"example": "example.com" "example": "example.com"
}, },
@ -37,11 +37,44 @@
"name": "path", "name": "path",
"type": "path", "type": "path",
"ask": { "ask": {
"en": "Choose a path for EmbyServer /emby is accepted", "en": "Choose a path for CodiMD /emby is accepted",
"fr": "Choisissez un chemin pour EmbyServer /emby est accepté" "fr": "Choisissez un chemin pour CodiMD /emby est accepté"
}, },
"example": "/emby", "example": "/codimd",
"default": "/emby" "default": "/codimd"
},
{
"name": "db_user",
"type": "string",
"ask": {
"en": "What user name for the DB ?",
"fr": "Quel nom d'utilisateur pour la DB ?"
},
"example": "codimd",
"default": "codimd"
},
{
"name": "db_pass",
"type": "string",
"ask": {
"en": "What password for the DB ?",
"fr": "Quel mot de passe pour la DB ?"
},
"example": "codimd",
"default": "codimd"
},
{
"name": "db_name",
"type": "string",
"ask": {
"en": "What name for the DB ?",
"fr": "Quel nom pour la DB ?"
},
"example": "codimd",
"default": "codimd"
}, },
{ {