1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cryptpad_ynh.git synced 2024-09-03 18:26:14 +02:00

Merge pull request #59 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2021-01-23 12:20:41 +01:00 committed by GitHub
commit 0f62f5b4a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 19 deletions

View file

@ -23,7 +23,7 @@ CryptPad is a collaborative encrypted document editor in real time. It is a priv
## Configuration ## Configuration
* How to configure this app: From an admin panel, a plain file with SSH. * How to configure this app: From the admin panel and the plain file `/var/www/cryptpad/config/config.js.`
## Documentation ## Documentation
@ -49,7 +49,7 @@ CryptPad is a collaborative encrypted document editor in real time. It is a priv
## Additional information ## Additional information
* To increase space for CryptPad users, you can modify `/var/www/cryptpad/config.js`, and restart the CryptPad service with `sudo service cryptpad restart`. * To increase space for CryptPad users, you can modify `/var/www/cryptpad/config/config.js`, and restart the CryptPad service with `sudo service cryptpad restart`.
## Links ## Links

View file

@ -23,7 +23,7 @@ CryptPad est un éditeur de documents chiffrés collaboratifs en temps réel. C'
## Configuration ## Configuration
Comment configurer cette application : via le panneau d'administration ainsi que le fichier de configuration `/var/www/cryptpad/config.js`. Comment configurer cette application : via le panneau d'administration ainsi que le fichier de configuration `/var/www/cryptpad/config/config.js`.
## Documentation ## Documentation
@ -49,7 +49,7 @@ Comment configurer cette application : via le panneau d'administration ainsi que
## Informations additionnelles ## Informations additionnelles
* Pour augmenter l'espace pour l'utilisateur dans le CryptPad, vous pouvez configurer le fichier `config.js` dans le dossier `/var/www/cryptpad/config.js`, puis redémarrez le service CryptPad `sudo service cryptpad restart`. * Pour augmenter l'espace pour l'utilisateur dans le CryptPad, vous pouvez configurer le fichier `config.js` dans le dossier `/var/www/cryptpad/config/config.js`, puis redémarrez le service CryptPad `sudo service cryptpad restart`.
## Liens ## Liens

View file

@ -6,7 +6,7 @@
"en": "Zero Knowledge realtime collaborative editor", "en": "Zero Knowledge realtime collaborative editor",
"fr": "Éditeur chiffré collaboratif en temps réel." "fr": "Éditeur chiffré collaboratif en temps réel."
}, },
"version": "3.24.0~ynh1", "version": "3.24.0~ynh2",
"url": "https://cryptpad.fr/", "url": "https://cryptpad.fr/",
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",
"maintainer": { "maintainer": {
@ -31,16 +31,6 @@
"fr": "Choisissez un nom de domaine pour CryptPad" "fr": "Choisissez un nom de domaine pour CryptPad"
}, },
"example": "cryptpad.example.com" "example": "cryptpad.example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for CryptPad, requires a dedicated sub-domain/domain.",
"fr": "Choisissez un chemin pour CryptPad, nécessite un sous-domaine/domaine dédié."
},
"example": "/",
"default": "/"
}, },
{ {
"name": "admin", "name": "admin",

View file

@ -16,4 +16,5 @@ nodejs_version="12"
#================================================= #=================================================
# FUTURE OFFICIAL HELPERS # FUTURE OFFICIAL HELPERS
#================================================= #=================================================

View file

@ -50,14 +50,14 @@ ynh_app_setting_set --app=$app --key=is_public --value=$is_public
ynh_app_setting_set --app=$app --key=path_url --value=$path_url ynh_app_setting_set --app=$app --key=path_url --value=$path_url
ynh_app_setting_set --app=$app --key=admin --value=$admin ynh_app_setting_set --app=$app --key=admin --value=$admin
admin_mail=$(ynh_user_get_info "$admin" 'mail') admin_mail=$(ynh_user_get_info "$admin" "mail")
#================================================= #=================================================
# STANDARD MODIFICATIONS # STANDARD MODIFICATIONS
#================================================= #=================================================
# FIND AND OPEN A PORT # FIND AND OPEN A PORT
#================================================= #=================================================
ynh_script_progression --message="Configuring firewall..." --weight=1 ynh_script_progression --message="Finding an available port..." --weight=1
# Find an available port # Find an available port
port=$(ynh_find_port --port=3000) port=$(ynh_find_port --port=3000)

View file

@ -31,7 +31,7 @@ path_url=$(ynh_app_setting_get --app=$app --key=path_url)
final_path=$(ynh_app_setting_get --app=$app --key=final_path) final_path=$(ynh_app_setting_get --app=$app --key=final_path)
is_public=$(ynh_app_setting_get --app=$app --key=is_public) is_public=$(ynh_app_setting_get --app=$app --key=is_public)
admin=$(ynh_app_setting_get --app=$app --key=admin) admin=$(ynh_app_setting_get --app=$app --key=admin)
admin_mail=$(ynh_user_get_info '$admin' 'mail') admin_mail=$(ynh_user_get_info "$admin" "mail")
port=$(ynh_app_setting_get --app=$app --key=port) port=$(ynh_app_setting_get --app=$app --key=port)
porti=$(ynh_app_setting_get --app=$app --key=porti) porti=$(ynh_app_setting_get --app=$app --key=porti)